如何讓apache隨linux啟動而啟動的方法做個總結,總結如下:
1 cd /etc/init.d
2 vi apache2
3 貼上以下**
****************************************
#!/bin/sh
# description: apache auto start-stop script.
# chkconfig: - 85 15
apache_home=/usr/local/apache2
apache_owner=root
if [ ! -f "$apache_home/bin/apachectl" ]
then
echo "apache startup: cannot start"
exit
ficase "$1" in
'start')
su - $apache_owner -c "$apache_home/bin/apachectl start"
;;'stop')
su - $apache_owner -c "$apache_home/bin/apachectl stop"
;;'restart')
su - $apache_owner -c "$apache_home/bin/apachectl restart"
;;esac
****************************************
4 chmod +x apache2
5 chkconfig --add apache2
6 chkconfig -level 345 apache2 on
7 service apache2 start 啟動apache server
8 重新啟動linux,並驗證apache是否隨linux啟動
如果上述操作無誤,結果應該是ok的!
centos設定Apache開機啟動
1 前言 2 設定方法 有兩種方法,一種是修改配置檔案,一種是通過新增啟動項。方法一 根據系統啟動的初始化過程,修改配置檔案 centos中的執行模式2 3 5都把 etc rc.d rc.local做為初始化指令碼中的最後乙個,所以使用者可以自己在這個檔案中新增一些需要在其他初始化工作之後,登入之...
Apache設定自動啟動
apache安裝路徑為 usr local apache 1 cp usr local apache bin apachectl etc rc.d init.d httpd 如果有其他的版本的apache存在,也可以直接覆蓋掉。ln s etc rc.d init.d httpd etc rc.d ...
設定自動啟動apache
安裝完畢後,apache並不會關機後自動啟動,需要手工進行一些設定 先將apachectl這個檔案複製到 etc init.d下,並更名為httpd 然後編輯此檔案,kate etc init.d httpd 並在 bin sh下加入以下幾句 儲存後退出。2345是指apache的執行級別,即在23...