故障现象:主机突然不通,登录服务器看网卡的状态是down
解决方案:
1、尝试重启网卡,发现不行,干脆重启服务还是不行
service network restart
reboot
ifup eth0 #报错如下
2、根据报错上网搜了下,猜测网络服务可能跟NetworkManager服务冲突
#关闭NetworkManager服务
[root@localhost ~]#service NetworkManager stop
#禁止NetworkManager服务开机启动
[root@localhost ~]# chkconfig NetworkManager off
#开启网络服务
[root@localhost ~]#service network start
#设置网络服务开机自启动
[root@localhost ~]#chkconfig network on