欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

centOS 7 :service network restart 失败 【已解决】

程序员文章站 2022-03-12 08:16:02
...

centOS 7 :配置静态ip后 service network restart 失败

centOS 7 :service network restart 时出现失败;报错:“Job for network.service failed because the control process exited with error code. See “systemctl status network.service” and “journalctl -xe” for details.” 且“network.service: control process exited, code=exited status=1”

具体报错如下:
centOS 7 :service network restart 失败 【已解决】
或者:
centOS 7 :service network restart 失败 【已解决】
解决方法:
1、检测配置文件
检测/etc/sysconfig/network-scripts/ 文件夹下是否有类似下图红色线的文件(一般是自己拷贝的),正确的拷贝方式为蓝色线的文件;且如果是centos7系统,不应该存在ifcfg-eth0文件(不一定),应当将其删除,在有些教程中配置的该文件,统一改为ifcfg-ens33;正确判断是否为配置文件的方法是“文件里已有一定的配置信息”。
centOS 7 :service network restart 失败 【已解决】
重启网络:systemctl start network.service

2、配置文件无问题还有报错
执行以下语句

$ systemctl stop NetworkManager
$ systemctl disable NetworkManager 

重启网络:systemctl start network.service

3、如果无任何提示信息即为启动成功
centOS 7 :service network restart 失败 【已解决】
测试结果如下:
centOS 7 :service network restart 失败 【已解决】