網絡技術日誌
關於 PHP, Linux, Open Source 及個人生活記載的網誌。
-
“service httpd does not support chkconfig” 問題
Posted on December 11th, 2008 No comments在 Redhat 上面使用編譯的方式安裝 Apache 後,將 bin/apachectl 複製到 /etc/rc.d/init.d/ 目錄,並想用 chkconfig 將 Apache 設定成自動啟動,但出現了 "service httpd does not support chkconfig"。
解決方法是開解 /etc/rc.d/init.d/httpd (或 /etc/init.d/httpd),在第二行加入以下兩句:
# chkconfig: 2345 10 90
# description: Activates/Deactivates Apache Web Server這樣就會將 httpd 強制支援 chkconfig。
Leave a reply
