首页 > Ubuntu 和 Redhat / Fedora 服务管理命令对比表(附Fedora16新的服务管理工具systemctl )...

Ubuntu 和 Redhat / Fedora 服务管理命令对比表(附Fedora16新的服务管理工具systemctl )...

以 apache/httpd 服务作为例子

任务

Red Hat / Fedora

Ubuntu

Ubuntu 

(with sysv-rc-conf or sysvconfig)

立即启动/停止某服务

service httpd start

invoke-rc.d apache start

service apache start

启动时自动加载

chkconfig httpd on

update-rc.d apache defaults

sysv-rc-conf apache on

启动时不加载

chkconfig httpd off

update-rc.d apache purge

sysv-rc-conf apache off

https://help.ubuntu.com/community/SwitchingToUbuntu/FromLinux/RedHatEnterpriseLinuxAndFedora

安装sysv-rc-conf

$ sudo apt-get install sysv-rc-conf



用法:

sysv-rc-conf --list [service name]

sysv-rc-conf [--level ]

 

 

译者按:从Fedora16开始,Redhat不再推荐ntsysv、chkconfig、service,而是建议使用新的服务管理工具systemctl (貌似功能强大) ,尽管旧指令也是可以用的。

http://docs.fedoraproject.org/en-US/Fedora/16/html/System_Administrators_Guide/ch-Services_and_Daemons.html

 

对比表,以 apache / httpd 为例

任务旧指令新指令
使某服务自动启动chkconfig --level 3 httpd on
systemctl enable httpd.service
使某服务不自动启动chkconfig --level 3 httpd off
systemctl disable httpd.service
检查服务状态service httpd status
systemctl status httpd.service (服务详细信息) 
systemctl is-active httpd.service (仅显示是否 Active)
显示所有已启动的服务(谁知道?害羞
systemctl list-units --type=service           
启动某服务service httpd start
systemctl start httpd.service
停止某服务service httpd stop
systemctl stop httpd.service
重启某服务service httpd restart
 
systemctl restart httpd.service

linux

转载于:https://www.cnblogs.com/shineqiujuan/p/4706053.html

更多相关:

  • 这周本来是要写一篇Dubbo源码分析的,被突发事件耽搁了,下周有时间再补上。这周,笔者经历了一次服务雪崩。服务雪崩,听到这个词就能想到问题的严重性。是的,整个项目,整条业务线都挂了,从该业务线延伸出来的下游业务线也跟着凉了。笔者是连续三天两夜的忙着处理问题,加起来睡眠时间不足5小时,今天才得以睡个好觉。但事故之后还有很多问题等着去...

  •     由于工作中需要直接从MySQL后台读取数据,所以安装了PHPnow,装的过程中提示Apache安装失败,80端口被占用。     在cmd中输入netstat –ano命令,发现80端口被一个PID为4的服务所占用,打开任务管理器,发现PID为4的进程为系统进程,其描述信息为NT Kernel & System,在服务里面又...

  • Dubbo 2.7 版本增加新特性,新系统开始使用 Dubbo 2.7.1 尝鲜新功能。使用过程中不慎踩到这个版本的 Bug。 系统架构 Spring Boot 2.14-Release + Dubbo 2.7.1 现象 Dubbo 服务者启动成功,正常提供服务,消费者调用偶现失败的情况。错误如下图: 可以看出,主要原因为 ca...

  • 越来越多的软件,开始采用云服务。 云服务只是一个统称,可以分成三大类。 IaaS:基础设施服务,Infrastructure-as-a-servicePaaS:平台服务,Platform-as-a-serviceSaaS:软件服务,Software-as-a-service 它们有什么区别呢? IBM 的软件架构师 Albert...

  • Docker最全教程——从理论到实战(六) 原文:Docker最全教程——从理论到实战(六)托管到腾讯云容器服务 托管到腾讯云容器服务,我们的公众号“magiccodes”已经发布了相关的录屏教程,大家可以结合本篇教程一起查阅。 自建还是托管? 在开始之前,我们先来讨论一个问题——是自建容器服务还是托管到云容器服务? 这里...

  • centos删除系统自带的httpd 1、[root@localhost etc]# rpm -qa|grep httpd,查看与httpd相关软件包。 httpd-tools-2.2.15-15.el6.centos.i686 httpd-2.2.15-15.el6.centos.i686 www.2cto.com 2、然后删除ht...