在Linux啟動時讓Apache也自動啟動
現對如何讓Apache隨Linux啟動而啟動的方法做個總結,總結如下:
1 cd /etc/init.d
2 vi apache2
3 粘貼以下代碼
========================================
#!/bin/sh
# deion: Apache auto start-stop .
# chkconfig: - 85 15
APACHE_HOME=/usr/local/apache2
APACHE_OWNER=root
if [ ! -f "$APACHE_HOME/bin/apachectl" ]
then
echo "Apache startup: cannot start"
exit
fi
case "$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的!
關鍵字:Linux、Apache、重新啟動
新文章:
- CentOS7下圖形配置網絡的方法
- CentOS 7如何添加刪除用戶
- 如何解決centos7雙系統后丟失windows啟動項
- CentOS單網卡如何批量添加不同IP段
- CentOS下iconv命令的介紹
- Centos7 SSH密鑰登陸及密碼密鑰雙重驗證詳解
- CentOS 7.1添加刪除用戶的方法
- CentOS查找/掃描局域網打印機IP講解
- CentOS7使用hostapd實現無AP模式的詳解
- su命令不能切換root的解決方法
- 解決VMware下CentOS7網絡重啟出錯
- 解決Centos7雙系統后丟失windows啟動項
- CentOS下如何避免文件覆蓋
- CentOS7和CentOS6系統有什么不同呢
- Centos 6.6默認iptable規則詳解