Centos7 重启网卡失败解决方案

目录:

  • 背景:
  • 解决方案:

背景:

1.重启虚拟机后找不到 默认eno16777728或者其他网卡
2.service network restart 命令重启网卡报以下错误
在这里插入图片描述

解决方案:

1.查看网卡配置:

ifconfig

2.进入文件 ls 查看有没有对应网卡文件:

cd /etc/sysconfig/network-scripts/
ls

3.配置中关闭网络管理

chkconfig NetworkManager off

4.配置中开启网络管理

 chkconfig network on

5.服务中关闭网络管理

service NetworkManager stop

6.服务中开启网络管理

 service network start

7.重点!!!!!!!!!:
在 service network restart 命令重启网卡报错时

cd /etc/init.d  
或者 
cd /etc/rc.d/init.d 
./network restart

重启成功:
Centos7 重启网卡失败解决方案_第1张图片

你可能感兴趣的:(Linux,linux,网络,运维)