linux系统用service httpd restart重启apache2 提示httpd:unrecognized service 该怎么解决
发布网友
发布时间:2022-04-14 08:21
我来回答
共1个回答
热心网友
时间:2022-04-14 09:50
service
httpd
restart
出现
httpd:unrecognized
service
错误
vi
/etc/rc.local
#在/etc/rc.d/rc.local中增加启动apache的命令
添加:
/usr/local/apache2/bin/apachectl
start
或者
#将apache注册为系统服务
#
cp
/usr/local/apache2/bin/apachectl
/etc/rc.d/init.d/httpd
#chmod
700
/etc/rc.d/init.d/httpd
#vi
/etc/rc.d/init.d/httpd
在第三行后增加
#Comments
to
support
chkconfig
on
RedHat
Linux
#chkconfig:
2345
90
90
#description:http
server
注意:没有这几行,在使用chkconfig时会提示:
service
httpd
does
not
support
chkconfig。
chkconfig
--add
httpd
chkconfig
--level
2345
httpd
on