【个人笔记】Linux 服务管理两种方式service和systemctl
在Linux系统中,服务管理通常涉及启动、停止、重启、查看状态等操作。早期的Linux发行版使用service
命令,而现代的系统如CentOS 7及以上版本则使用systemctl
命令。
- 使用
service
命令
# 启动服务
service [服务名] start
# 停止服务
service [服务名] stop
# 重启服务
service [服务名] restart
# 查看服务状态
service [服务名] status
例如,启动Apache服务:
service httpd start
- 使用
systemctl
命令
# 启动服务
systemctl start [服务名]
# 停止服务
systemctl stop [服务名]
# 重启服务
systemctl restart [服务名]
# 查看服务状态
systemctl status [服务名]
例如,启动Apache服务:
systemctl start httpd
注意:[服务名]
通常是不带.service
后缀的服务名称。在使用systemctl
时,你可以通过enable
子命令设置服务开机自启:
systemctl enable [服务名]
以上两种方式可以根据你使用的Linux发行版进行选择使用。
评论已关闭