Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> “httpd未被被識別的服務”的解決辦法

“httpd未被被識別的服務”的解決辦法

日期:2017/2/7 14:34:28      編輯:Linux教程
 

使用自動編譯安裝會出現這個問題,也就是輸入
#service httpd restart

給出這樣的提示;這時候要重啟可以

#/usr/local/apache2/bin/apachectl start

 

如果你希望使用

#service httpd restart

那麼需要按下面的做法

注意的是daemon /usr/local/apache2/bin/apachectl 每個人安裝的不同 你要寫你自己的

 

用chkconfig --list可以看到有很多項目,這些都放在目錄/etc/init.d下面。下面我們要進行新加入一個httpd啟動項目(如果沒有httpd的話)

touch /etc/init.d/httpd

chmod 755 /etc/init.d/httpd

vi /etc/init.d/httpd

 

#!/bin/bash
#
# chkconfig: 2345 85 85
# description: httpd is a web server
# processname: httpd

# source function library
. /etc/init.d/functions


RETVAL=0

start() {
echo -n {1}quot;Starting httpd service: "
daemon /usr/local/apache2/bin/apachectl start
RETVAL=$?
echo
}

stop() {
echo -n {1}quot;Shutting down httpd service: "
daemon /usr/local/apache2/bin/apachectl stop
RETVAL=$?
echo
}

case "$1" in
start)
start
;;
stop)
stop
;;
restart|reload)
stop
start
;;
*)
echo {1}quot;Usage: $0 {start|stop|restart}"
exit 1
esac

exit $RETVAL

Copyright © Windows教程網 All Rights Reserved