您好,登錄后才能下訂單哦!
apache與mysql添加進系統服務并設置開機啟動
apache
1 cp /usr/local/apache/bin/apachectl /etc/init.d/httpd
2 chkconfig --add httpd
出現錯誤service httpd does not support chkconfig
打開 vi /etc/rc.d/init.d/httpd 添加(#!/bin/sh下面)
# chkconfig: 345 85 15
# description: Activates/Deactivates Apache Web Server
345代表哪些Linux級別需要啟動httpd, 啟動序號是85, 關閉序號是15
3 chkconfig httpd on
mysql
1 cp /root/tools/mysql-5.1.72/support-files/mysql.server /etc/init.d/mysqld
1.1 chmod 700 /etc/init.d/mysqld
2 chkconfig --add mysqld
3 chkconfig mysqld on
由此來總結添加方法。
本文出自博客http://xiangji.blog.51cto.com,請務必保留此出處。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。