Home  >  Article  >  Operation and Maintenance  >  How to solve the problem that the centos system network card cannot be started

How to solve the problem that the centos system network card cannot be started

王林
王林Original
2020-03-19 16:22:424710browse

How to solve the problem that the centos system network card cannot be started

The error message is as follows:

Restarting network (via systemctl): Job for network.service failed because the control process exited with error code. See "systemctl status network. service" and "journalctl -xe" for details.

The solution is as follows:

Use the command systemctl status network to view the error: Failed to start LSB: Bring up/down networking

(Recommended tutorial: centos usage tutorial)

Find the cause and solve it:

The NetworkManager management suite that comes with the system affects the startup of the network card, just turn it off. .

The command is as follows:

systemctl stop NetworkManager		//停止NetworkManager
systemctl disable NetworkManager	//并使其失效,开机不启动
systemctl start network			//启动网络后就OK了

Recommended related video tutorials: linux video tutorial

The above is the detailed content of How to solve the problem that the centos system network card cannot be started. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn