服 | 务 | 管 | 理 |
---|---|---|---|
RPM 包默认安装的服务 | 独立的服务 | 启动 | 使用/etc/init.d/目录中脚本启动服务,如:/etc/init.d/httpd start|stop|restart |
使用 service 命令启动服务,如:service httpd start|stop|restart | |||
自启动 | 使用 chkconfig 命令管理自启动,如:chkconfig --level 2345 httpd on|off | ||
修改/etc/rc.d/rc.local 文件,如:vi /etc/rc.d/rc.local 加入/etc/init.d/http start | |||
使用 ntsysv 命令管理服务自启动 | |||
基于 xinetd 的服务 | 启动 | 修改/etc/xinetd.d/配置文件,如:vi /etc/xinetd/telnet 把 disable=yes 改为 disable=no,重启 xinetd 服务,service xinetd restart | |
自启动 | 使用 chkconfig 命令管理自启动,如:chkconfig telnet on|off | ||
源码包安装的服务 | 启动 | 使用源码包启动脚本启动服务,如:/usr/local/apache2/bin/apachectl start | |
自启动 | 修改/etc/rc.d/rc.local 文件,如:vi /etc/rc.d/rc.local 加入 /usr/local/apache2/bin/apachectl start |