linux里面的rpm包,就相当于windows里面的exe文件,windows里面的exe文件在安装后会产生一个服务,rpm包也是如此。
如何管理rpm包安装的服务服务:
1.服务绝对路径 start|stop|status|restart
2.service 服务名 start|stop|status|restart
查看看所有rpm安装包的服务的状态:
service --status-all
查看rpm包安装的服务有哪些?
chkconfig --list
在我自己电脑上执行的结果如下,0-6分别表示7个运行级别,on/off表示在对应级别下是否开机自启动:
[root@node78 ~]#chkconfig --list Note: This output shows SysV services only and does not include native systemd services. SysV configuration data might be overridden by native systemd configuration. If you want to list systemd services use 'systemctl list-unit-files'. To see services enabled on particular target use 'systemctl list-dependencies [target]'. netconsole 0:off 1:off 2:off 3:off 4:off 5:off 6:off network 0:off 1:off 2:on 3:on 4:on 5:on 6:off
让httpd服务在2345运行级别开机自启动如下,如果把on改为off,则是关闭开机自启动:
chkconfig --level 2345 httpd on
比如,我通过rpm方式安装了httpd服务后,如何让该httpd服务被chkconfig管理?
chkconfig --add httpd
如何从chkconfig管理列表里去除httpd服务?
chkconfig --del httpd