CentOS命令笔记
防火墙相关
1.查看防火墙状态:
firewall-cmd --state
2.关闭防火墙命令:
systemctl stop firewalld.service
3.启动防火墙命令:
systemctl stop firewalld.service
4.禁止firewall开机启动
systemctl disable firewalld.service
5.设置 iptables service
yum -y install iptables-services
如果要修改防火墙配置,如增加防火墙端口3306
vi /etc/sysconfig/iptables
增加规则
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
保存退出后
systemctl restart iptables.service #重启防火墙使配置生效
systemctl enable iptables.service #设置防火墙开机启动
最后重启系统使设置生效即可。
网络相关
1.centos无法使用netstat命令
解决办法:yum -y install net-tools
持续完善。。。
相关推荐
summerinsist 2020-08-21
Wepe0 2020-10-30
Lostinthewoods 2020-10-29
hickwu 2020-10-23
focusforce 2020-10-10
winki 2020-08-19
89284553 2020-07-17
大老张学编程 2020-07-04
xiaohouye 2020-06-28
lizhengfa 2020-06-26
Aveiox 2020-06-25
clamzxf 2020-06-16
kerson 2020-06-16
zhangwentaohh 2020-06-14
学峰的学习笔记 2020-06-11
linuxalienyan 2020-06-11