发布时间:2013-10-28 11:24:07
chkconfig --add httpd Error服务不支持
Apache无法自动启动,
1、将apachectl文件拷贝到/etc/rc.d/init.d 中,
cp /usr/local/apache/bin/apachectl /etc/init.d/httpd //如果有其他的版本的Apache存在,也可以直接覆盖掉
此时Apache就可以自动启动了。
2、 运行chkconfig --list,发现没有linux服务列表中httpd,通过chkconfig --add httpd来添加,但是提示:httpd服务不支持 chkconfig。需要编辑/etc/rc.d/init.d/httpd,添加以下注释信息:
# chkconfig: 345 85 15
# description: Activates/Deactivates Apache Web Server
第一行3个数字参数意义分别为:哪些Linux级别需要启动httpd(3,4,5);启动序号(85);关闭序号(15)。
保存后执行:c......【阅读全文】