Skip to content Skip to main navigation Skip to footer

centos 7/rhel7: 如何重启/停止/启动网络服务

在新的centos7 系统里,我们如何来启动网络服务,如何重启网络服务以及如何来停止网络服务呢?centos 7 系统现在使用systemd来替换之前的init进程。它是linux操作系统的系统和服务的管理者。
centos 7
在之前的centos 6 系统里,我们一般都是使用init脚本来控制系统的服务或者进程的。
CentOS 7 重启网络服务,输入下面的命令:
[cc lang=”php”] systemctl retart network.service

systemctl restart network
[/code] Centos 7 启动网络服务,输入下面的命令:
[cc lang=”php”] systemctl start network.service

systemctl start network
[/code] CentOS 7 停止网络服务,输入命令:
[cc lang=”php”] systemctl stop network.service

systemctl stop network
[/code]

0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.