linux版本6.5

今天在虚拟机Linux中装了一个zookeeper.需要关闭防火墙,因为对Linux不是很熟悉,费了一番手脚
暂时关闭防火墙的命令如下

service iptables stop

但是一直出现Linux init: Need to be root
在这里插入图片描述
需要管理员权限
此时输入 su
然后输入你的管理员密码,就是锁屏密码,密码输入之后直接回车,它是空白的不会显示,但是确实输入进去了。
在这里插入图片描述
此时已经有了root权限

关闭防火墙的命令如下

查看防火墙状态
service  iptables status
暂时关闭防火墙
service iptables stop
重启防火墙
service iptables restart  
永久关闭后重启
chkconfig iptables on
永久关闭后不重启
chkconfig iptables off

linux版本 centos 7.0

查看防火墙状态

firewall-cmd --state

停止firewall

systemctl stop firewalld.service

禁止firewall开机启动

systemctl disable firewalld.service
Logo

更多推荐