centos常用操作命令

centos7.0操作防火墙

  • 临时关闭防火墙
    systemctl stop firewalld
  • 永久防火墙开机自关闭
    systemctl disable firewalld
  • 临时打开防火墙
    systemctl start firewalld
  • 防火墙开机启动
    systemctl enable firewalld
  • 查看防火墙状态
    systemctl status firewalld

SELinux

  • 临时关闭SELinux
    setenforce 0
  • 临时打开SELinux
    setenforce 1
  • 查看SELinux状态
    getenforce
  • 开机关闭SELinux

编辑/etc/selinux/config文件,如下图,将SELINUX的值设置为disabled。下次开机SELinux就不会启动了。

centos常用操作命令_第1张图片
selinux-config.png
//注意,此时也不能通过setenforce 1命令临时打开selinux了。
[root@localhost ~]# setenforce 1
setenforce: SELinux is disabled

你可能感兴趣的:(centos常用操作命令)