前言:
前几天使用 Docker 搭建 Nginx 反向代理, 不知道做了什么操作 Liunx Centos7 系统突然无网络了,systemctl status network 发现网络无法正常重启, 重启系统,依旧无网络, 执行 ifconfig 发现 ens33 网卡也不见了,在此写下解决方法
问题解决
1 . 执行 cd /etc/sysconfig/network-scripts/, 可以看到 ens33 网卡还在, 那就好办了
2 . 停止NetworkManager.service
[root@localhost ~]# systemctl stop NetworkManager.service
[root@localhost ~]# systemctl disable NetworkManager.service
Removed symlink /etc/systemd/system/multi-user.target.wants/NetworkManager.service.
Removed symlink /etc/systemd/system/dbus-org.freedesktop.NetworkManager.service.
Removed symlink /etc/systemd/system/dbus-org.freedesktop.nm-dispatcher.service.
3 . 重启network服务
[root@localhost network-scripts]# service network restart
Restarting network (via systemctl): [ OK ]
[root@localhost network-scripts]#
[root@localhost network-scripts]#
[root@localhost network-scripts]#
4 . 问题解决