查看IP
关闭防火墙和selinux
[root@master ~]$systemctl stop firewalld.service
[root@master ~]$systemctl disable firewalld.service
[root@master ~]$setenforce 0
修改config文件
[root@master ~]$vim /etc/selinux/config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=disabled
# SELINUXTYPE= can take one of three two values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected.
# mls - Multi Level Security protection.
SELINUXTYPE=targeted
修改网卡
[root@master ~]$vim /etc/sysconfig/network-scripts/ifcfg-ens33
TYPE=Ethernet
BOOTPROTO=static
NAME=ens33
DEVICE=ens33
ONBOOT=yes
IPADDR=192.168.33.102
重启网络服务报错:
[root@master ~]$service network restart
Restarting network (via systemctl): Job for network.service failed because the control process exited with error code. See "systemctl status network.service" and "journalctl -xe" for details.
查看IP没有:
关闭NetworkManager,关闭network,在启动network
[root@master ~]$systemctl stop NetworkManager
[root@master ~]$systemctl stop network
[root@master ~]$systemctl start network
查看IP就有了