跳至主要內容

系统服务命令

Sankgao约 309 字大约 1 分钟ComputerLinux

初始化进程

System V init 运行级别Systemd 目标名称Systemd 目标作用
0poweroff.target关机
1rescue.target单用户模式
2multi-user.target多用户的文本界面
3multi-user.target多用户的文本界面
4multi-user.target多用户的文本界面
5graphical.target多用户的图形界面
6reboot.target重启
7emergency.target救援模式

服务启动等常用命令

提示

RHEL 5/6 系统使用 servicechkconfig 等命令来管理系统服务;RHEL 7/8 系统使用 systemctl 命令来管理系统服务

RHEL 5/6 系统RHEL 7/8 系统作用
service foo startsystemctl start httpd启动服务
service foo restartsystemctl restart httpd重启服务
service foo stopsystemctl stop httpd停止服务
service foo reloadsystemctl reload httpd重新加载配置文件(不终止服务)
service foo statussystemctl status httpd查看服务状态

服务开机启动等常用命令

RHEL 5/6 系统RHEL 7/8 系统作用
chkconfig foo onsystemctl enable httpd开机自动启动
chkconfig foo offsystemctl disable httpd开机不自动启动
chkconfig foosystemctl is-enabled httpd查看特定服务是否为开机自启动
chkconfig --listsystemctl list-unit-files-type=httpd查看各个级别下服务的启动与禁用情况