原由:電腦上裝了虛擬機(jī),虛擬機(jī)上有裝有MySQL數(shù)據(jù)庫,因?yàn)殡娔X每天都要開關(guān)機(jī),第二天開機(jī)后還需要手動開啟mysql服務(wù),因?yàn)椴┲鞅容^懶,故做成自動啟動。
備注:生產(chǎn)中一般不會做成自動啟動
步驟如下:
1,查看是否有mysql服務(wù)
[root@mysql1 ~]# chkconfig --list
2,進(jìn)入mysql軟件目錄,復(fù)制mysql.server文件到 /etc/rc.d/init.d目錄下
[root@mysql1 ~]# cd /data/mysql/support-files
[root@mysql1 support-files]# cp mysql.server /etc/rc.d/init.d/mysql
3,給/etc/rc.d/init.d/mysql賦權(quán)可執(zhí)行權(quán)限
[root@mysql1 support-files]# chmod +x /etc/rc.d/init.d/mysql
4,添加mysql服務(wù)
[root@mysql1 support-files]# chkconfig --add mysql
5,使mysql服務(wù)開機(jī)自啟
[root@mysql1 support-files]# chkconfig --level 345 mysql on
6,reboot
服務(wù)器,測試是否成功。
有些人只教上車,不教下車是要不得的,
備注:開機(jī)不自啟
[root@mysql1 support-files]# chkconfig --level 345 mysql off
新聞名稱:mysql開機(jī)啟動(Linux)
當(dāng)前網(wǎng)址:
http://weahome.cn/article/geeidj.html