电脑装配网

debian系统怎么重启网络(Linux服务重启与关闭步骤)

 人阅读 | 作者奔跑的小羊 | 时间:2023-02-19 17:44

1. Linux管理服务工具之service简介

本文主要是讲解service命令的功能与日常使用方法,该命令是红帽兼容系列的发行版中用来控制系统服务的实用工具,它以启动、停止、重新启动和关闭系统服务,还可以显示所有系统服务的当前状态。注意CentOS7以后使用了systemctl工具来管理服务,不再使用service。

以下命令不适用于CentOS7

2. 常用方式

2.1 启动服务

service <service> start

2.2 停止服务

service <service> stop

2.3 重启服务

service <service> restart

原理是先停止再启动

3. 查看网络服务的状态

[root@zcwyou ~]# service network status

Configured devices:

lo eth0

Currently active devices:

lo eth0

 

Linux使用service命令查看某服务的状态

4. 重启网络服务

[root@zcwyou ~]# service network restart

Shutting down interface eth0: Device state: 3 (disconnected)

​ [ OK ]

Shutting down loopback interface: [ OK ]

Bringing up loopback interface: [ OK ]

Bringing up interface eth0: Active connection state: activating

Active connection path: /org/freedesktop/NetworkManager/ActiveConnection/1

state: activated

Connection activated

​ [ OK ]

 

Linux重启某服务

5. 停止网络服务

[root@zcwyou ~]# service network stop

Shutting down interface eth0: Device state: 3 (disconnected)

​ [ OK ]

Shutting down loopback interface: [ OK ]

 

Linux停止某服务

6. 启动网络服务

[root@zcwyou ~]# service network start

Bringing up loopback interface: [ OK ]

Bringing up interface eth0: Active connection state: activating

Active connection path: /org/freedesktop/NetworkManager/ActiveConnection/1

state: activated

Connection activated

 

Linux使用service命令启动服务

7. 重启mysql服务

[root@zcwyou ~] service mysqld restart

stopping MySQL: [ OK ]

starting MySQL: [ OK ]

8.总结

Service命令用于管理程序的运行,该命令只适用CentOS6及更老的版本,CentOS7不建议使用该命令。


文章标签:

本文链接:『转载请注明出处』