发布网友 发布时间:2022-04-20 12:12
共1个回答
热心网友 时间:2022-05-14 04:19
展开3全部
不同的Linux发行版,对于系统服务管理的方法不同。目前主要有两种:
1 System V init script 相关的命令有service,chkconfig与init.d脚本;
2 Systemd
拿RHEL或CentOS来说,版本7以前的发行版本使用Sys V,而从7以后则改用Systemd。
两种方法重启httpd服务的方法如下:
1 System V
# service httpd restart2 Systemd
# systemctl restart httpd