>운영 및 유지보수 >CentOS >centos7 시스템이 네트워크 서비스를 시작하지 못하는 경우 수행할 작업

centos7 시스템이 네트워크 서비스를 시작하지 못하는 경우 수행할 작업

王林
王林원래의
2020-03-26 11:47:583741검색

centos7 시스템이 네트워크 서비스를 시작하지 못하는 경우 수행할 작업

문제 설명:

가상 머신의 eth33 네트워크 카드가 시작되지 않고, systemctl status network.service 실행 시 오류가 보고됩니다.

오류 메시지는 다음과 같습니다:

[root@zeppelin network-scripts]# systemctl status network.service
● network.service - LSB: Bring up/down networking
   Loaded: loaded (/etc/rc.d/init.d/network; bad; vendor preset: disabled)
   Active: failed (Result: exit-code) since Fri 2019-06-21 03:22:10 PDT; 27s ago
     Docs: man:systemd-sysv-generator(8)
  Process: 5948 ExecStop=/etc/rc.d/init.d/network stop (code=exited, status=0/SUCCESS)
  Process: 6074 ExecStart=/etc/rc.d/init.d/network start (code=exited, status=1/FAILURE)
Jun 21 03:22:09 zeppelin.zetyun.com systemd[1]: Starting LSB: Bring up/down networking...
Jun 21 03:22:10 zeppelin.zetyun.com network[6074]: Bringing up loopback interface:  [  OK  ]
Jun 21 03:22:10 zeppelin.zetyun.com network[6074]: Bringing up interface ens33:  Error: Connection activation failed: No suitable device found for this connection.
Jun 21 03:22:10 zeppelin.zetyun.com network[6074]: [FAILED]
Jun 21 03:22:10 zeppelin.zetyun.com systemd[1]: network.service: control process exited, code=exited status=1
Jun 21 03:22:10 zeppelin.zetyun.com systemd[1]: Failed to start LSB: Bring up/down networking.
Jun 21 03:22:10 zeppelin.zetyun.com systemd[1]: Unit network.service entered failed state.
Jun 21 03:22:10 zeppelin.zetyun.com systemd[1]: network.service failed.

(권장 튜토리얼: centos tutorial)

해결책:

시스템과 함께 제공되는 NetworkManager 관리 제품군과 관련이 있습니다. 네트워크 서비스를 닫고 다시 시작하세요.

닫기:

systemctl stop NetworkManager
systemctl disable NetworkManager

네트워크 다시 시작:

systemctl start network.service

권장 비디오 튜토리얼: linux 비디오 튜토리얼

위 내용은 centos7 시스템이 네트워크 서비스를 시작하지 못하는 경우 수행할 작업의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.