2

修改主机名

1.零时修改
[root@localhost network-scripts]# hostname zhli13
然后就可以看到我们的主机名被修改了  
           
2.永久修改主机名
[root@localhost /]# hostnamectl set-hostname zhli13
重启centos就可以看到更改了
    

关闭centos的防火墙

1.零时关闭
[root@zhli13~]# systemctl stop  firewalld.service
我们可以通过查看防火墙状态查看是否成功关闭
[root@zhli13~]# firewall-cmd  --state
not running     
     
2.永久关闭
[root@zhli13~]# systemctl  disable  firewalld.service
这句命令理解为开机不启动防火墙

关闭selinux

1.零时关闭
[root@zhli13~]# setenforce 0

2.永久关闭(修改配置文件)
[root@zhli13~]# vi /etc/selinux/config
最后重启即可,可以通过查看状态查看是否关闭
[root@zhli13~]# sestatus 
SELinux status:                 disabled

zer0_li
1.4k 声望307 粉丝

经不住似水流年,逃不过此间少年


« 上一篇
OGNL表达式
下一篇 »
Flex 布局教程