centos命令
Posted 九园
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos命令相关的知识,希望对你有一定的参考价值。
1.切换到root账户安装程序
su root
2可以使用echo $?检查命令是否执行成功,成功为0
3关闭防火墙
/etc/init.d/iptables stop
#start 开启
#restart 重启
永久性关闭防火墙chkconfig –level 35 iptables off
Centos7中的防火墙调整为firewalld,试一下systemctl stop firewalld关闭防火墙
5 开启80端口
iptables -I INPUT -p TCP --dport 80 -j ACCEPT
e重启mysql
service mysqld restart;
以上是关于centos命令的主要内容,如果未能解决你的问题,请参考以下文章