日期:2014-05-16 浏览次数:20961 次
当我们纯手工安装Apache后,需要将Apache服务添加到系统服务,并且将其作为系统的启动项。
下面,介绍一下具体步骤:
1. 添加启动项的命令
$ cp path/to/apachectl /etc/init.d/httpd $ vi /etc/init.d/httpd # chkconfig 2345 20 80 # description:XXX $ chkconfig --add httpd $chkconfig --levels 35 httpd on
#!/bin/sh # #chkconfig: 2345 20 80 #description: 启动和停止httpd的脚本
reboot