Ranjan Kumar Asked: 2017-11-29 21:16:41 +0800 CST2017-11-29 21:16:41 +0800 CST 2017-11-29 21:16:41 +0800 CST systemctl 命令在 RHEL 6 中不起作用 772 在 RHEL 7 或 CentOS 7 上,systemctl 或 systemd 命令可以正常工作。我知道它在 RHEL 6 或 CentOS 6 中不起作用。你能告诉我启动/停止服务的替代命令吗,例如:systemctl start iptables.service? rhel centos 3 个回答 Voted Best Answer garethTheRed 2017-11-29T21:30:15+08:002017-11-29T21:30:15+08:00 在早期版本的 RHEL 中,使用这里文档service中解释的命令。 # service service_name start 因此,在您的情况下: # service iptables start 您可以替换start为restart, stop, status。 列出所有服务: # service --status-all Hexdump 2019-08-08T03:28:17+08:002019-08-08T03:28:17+08:00 rhel 6 和 centos 6 使用的是 upstart,而不是 systemd。SysV(服务和 chkconfig)也仍然受支持。 检查initctl/etc/init/ 中的文档和文件 Rakesh 2020-07-22T11:18:49+08:002020-07-22T11:18:49+08:00 RHEL6 和 CENTOS 6 使用service命令来管理系统服务。从 RHEL7 开始systemctl,用于管理系统服务。
在早期版本的 RHEL 中,使用这里文档
service
中解释的命令。因此,在您的情况下:
您可以替换
start
为restart
,stop
,status
。列出所有服务:
rhel 6 和 centos 6 使用的是 upstart,而不是 systemd。SysV(服务和 chkconfig)也仍然受支持。
检查
initctl
/etc/init/ 中的文档和文件RHEL6 和 CENTOS 6 使用
service
命令来管理系统服务。从 RHEL7 开始systemctl
,用于管理系统服务。