linux在安装完成后会自动开启防火墙(firewalld),这将导致外部网络无法连接到操作系统。
一般情况下,我们都会选择关闭并禁用防火墙。
本来是使用命令
service iptables stop service ip6tables stop chkconfig iptables off chkconfig ip6tables off
但是linux下执行防火墙相关指令报错:Redirecting to /bin/systemctl restart iptables.service,应该是这个版本linux不支持这个命令了。
1,安装systemctl:yum install iptables-services
2,设置开机启动:systemctl enable iptables.service
重启
3.设置开机关闭:systemctl disable firewalld.service
需要换成以下命令:
systemctl stop iptables systemctl stop ip6tables systemctl disable iptables systemctl disable ip6tables
开启防火墙:
systemctl start firewalld.service
关闭防火墙:
systemctl stop firewalld.service
设置防火墙开机自启动:
systemctl enable firewalld.service
禁用防火墙自启动:
systemctl disable firewalld.service
Linux 服务管理有两种方式:service和systemctl
- systemd:Linux系统最新的初始化系统(init),提高系统的启动速度,尽可能启动较少的进程,尽可能更多进程并发启动。
- systemd对应的进程管理命令是systemctl,systemctl由上面可以知道,已经兼容了service命令了。
此文章仅代表自己(本菜鸟)学习积累记录,或者学习笔记,如有侵权,请联系作者删除。人无完人,文章也一样,文笔稚嫩,在下不才,勿喷,如果有错误之处,还望指出,感激不尽~
技术之路不在一时,山高水长,纵使缓慢,驰而不息。