将apache安装为系统服务
# cp /usr/local/apache2/bin/apachectl /etc/rc.d/init.d/httpd
然后 vi /etc/rc.d/init.d/httpd 添加(#!/bin/sh下面)
# chkconfig: 2345 50 90
# description: Activates/Deactivates Apache Web Server
最后,运行chkconfig把Apache添加到系统的启动服务组里面:
# chkconfig --add httpd
# chkconfig httpd on
然后再service httpd start
httpd:unrecognized service 解决办法
2013-10-21 15:20:21 来源: 评论:0 点击:
收藏
将apache安装为系统服务# cp /usr/local/apache2/bin/apachectl /etc/rc.d/init.d/httpd然后 vi /etc/rc.d/init.d/httpd 添加(#!/bin...
相关热词搜索:httpd:unrecognized service
上一篇:linux 查看日志
下一篇:nginx的启动命令