Linux下將Mysql和Apache加入到系統(tǒng)服務(wù)里的方法
發(fā)布日期:2022-04-15 14:34 | 文章來(lái)源:源碼中國(guó)
Apache加入到系統(tǒng)服務(wù)里面:
cp /安裝目錄下/apache/bin/apachectl /etc/rc.d/init.d/httpd
修改httpd
在文件頭部加入如下內(nèi)容:
###
# Comments to support chkconfig on RedHat Linux
# chkconfig: 2345 90 90
# description:http server
###
保存
在打入
#chkconfig --add httpd
#chkconfig --level 345 httpd on
MySQL加入到系統(tǒng)服務(wù)里面
cp /usr/local/mysql/share/mysql/mysql.server /etc/init.d/mysqld
#把msql的腳本文件拷到系統(tǒng)的啟動(dòng)目錄下
cd /etc/init.d/
chkconfig --add mysqld #將mysql加到啟動(dòng)服務(wù)列表里
chkconfig mysqld on #讓系統(tǒng)啟動(dòng)時(shí)自動(dòng)打開(kāi)mysql服務(wù)
Apache加入啟動(dòng)項(xiàng)里面:
echo '/usr/local/apache2/bin/apachectl start ' >> /etc/rc.local
cp /安裝目錄下/apache/bin/apachectl /etc/rc.d/init.d/httpd
修改httpd
在文件頭部加入如下內(nèi)容:
###
# Comments to support chkconfig on RedHat Linux
# chkconfig: 2345 90 90
# description:http server
###
保存
在打入
#chkconfig --add httpd
#chkconfig --level 345 httpd on
MySQL加入到系統(tǒng)服務(wù)里面
cp /usr/local/mysql/share/mysql/mysql.server /etc/init.d/mysqld
#把msql的腳本文件拷到系統(tǒng)的啟動(dòng)目錄下
cd /etc/init.d/
chkconfig --add mysqld #將mysql加到啟動(dòng)服務(wù)列表里
chkconfig mysqld on #讓系統(tǒng)啟動(dòng)時(shí)自動(dòng)打開(kāi)mysql服務(wù)
Apache加入啟動(dòng)項(xiàng)里面:
echo '/usr/local/apache2/bin/apachectl start ' >> /etc/rc.local
版權(quán)聲明:本站文章來(lái)源標(biāo)注為YINGSOO的內(nèi)容版權(quán)均為本站所有,歡迎引用、轉(zhuǎn)載,請(qǐng)保持原文完整并注明來(lái)源及原文鏈接。禁止復(fù)制或仿造本網(wǎng)站,禁止在非www.sddonglingsh.com所屬的服務(wù)器上建立鏡像,否則將依法追究法律責(zé)任。本站部分內(nèi)容來(lái)源于網(wǎng)友推薦、互聯(lián)網(wǎng)收集整理而來(lái),僅供學(xué)習(xí)參考,不代表本站立場(chǎng),如有內(nèi)容涉嫌侵權(quán),請(qǐng)聯(lián)系alex-e#qq.com處理。
相關(guān)文章