Linux service命令

Linux service命令:运行System V init脚本。

Linux service命令 功能描述

使用service命令可以运行System V init脚本,主要内容是启动、停止或重新启动服务,重新载入服务配置及查看系统中服务现在的运行状态。service命令执行后会立即生效,但是当重新启动系统以后,设置会失效。

Linux service命令 语法

service [服务名] [选项]
service [选项]

命令中各选项的含义如表所示。

service命令选项含义

Linux service命令 示例

查看系统中所有服务现在的运行状态

[root@rhel ~]# service --status-all
abrt-ccpp hook is installed
abrtd(pid 1771)正在运行...
abrt-dump-oops已停
acpid(pid 1544)正在运行...
atd(pid 1790)正在运行...
auditd(pid 2101)正在运行...
automount(pid 1625)正在运行...
用法:/etc/init.d/bluetooth {start|stop}
certmonger(pid 1816)正在运行...
cpuspeed已停
crond(pid 1779)正在运行...
cupsd(pid 1533)正在运行...
dnsdomainname: 主机名搜索失败
dnsmasq已停
........................(省略)

启动crond服务

[root@rhel ~]# service crond start
正在启动crond:                                            [确定]

查看crond服务现在的运行状态

[root@rhel ~]# service crond status
crond (pid 30261) 正在运行...

重新启动crond服务

[root@rhel ~]# service crond restart
停止crond:                                               [确定]
正在启动crond:                                           [确定]

停止crond服务

[root@rhel ~]# service crond stop
停止crond:                                               [确定]

重新载入crond服务配置

[root@rhel ~]# service crond reload
重新载入crond:                                           [确定]

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程