问题:
装完 apache 并且已经能运行正常,但是开机启动时,虽然是已经启动了 apache ,但启动时菜单并不显
示启动 apache 的字样,在 # chkconfig --list httpd 时,也无有 httpd 服务的字样列出,想把
chkconfig httpd on 加进去,但又显示 :httpd 服务不支持 chkconfig
答案:cp apache/bin/apachectl /etc/init.d/httpd ----将apachectl复制到/etc/init.d目录并重命名为httpd
vi httpd在第2行添加下面的注释:
# chkconfig: - 85 15
# description: Apache is a World Wide Web server. It is used to serve \
# HTML files and CGI.
然后chkconfig httpd on 即可加入。
阅读(1502) | 评论(0) | 转发(0) |