centos 7/rhel7: 如何重启/停止/启动网络服务
December 14, 2014
在新的centos7 系统里,我们如何来启动网络服务,如何重启网络服务以及如何来停止网络服务呢?centos 7 系统现在使用systemd来替换之前的init进程。它是linux操作系统的系统和服务的管理者。
在之前的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