如果你都是按照預設配置安裝的那麼只要按照如下步驟就可以了
1、cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysql 將服務檔案拷貝到init.d下,並重命名為mysql
2、chmod +x /etc/init.d/mysql 賦予可執行許可權
3、chkconfig --add mysql 新增服務
4、chkconfig --list 顯示服務列表
如果看到mysql的服務,並且3,4,5都是on的話則成功,如果是off,則鍵入
chkconfig --level 345 mysql on
5、reboot重啟電腦
6、netstat -na | grep 3306,如果看到有監聽說明服務啟動了
Linux下Mysql自啟動
如果你都是按照預設配置安裝的那麼只要按照如下步驟就可以了 1 cp usr local mysql support files mysql.server etc init.d mysql 將服務檔案拷貝到init.d下,並重命名為mysql 2 chmod x etc init.d mysql 賦予...
linux設定自啟動,mongodb自啟動
linux建立自啟動指令碼 1 進入目錄 cd etc init.d 複製 2 建立指令碼檔案 touch start mongodb.sh 複製 3 編寫指令碼 bin sh chkconfig 345 99 10 description auto starts mongodb echo star...
Linux 設定mysql開機自啟動
1 確認 etc init.d mysql檔案是否存在 如果不存在則去mysql安裝檔案中複製乙個 cp usr local mysql support files mysql.server etc init.d mysql2 賦予可執行許可權 chmod x etc init.d mysql3 新...