時間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(0)
取消自動啟動
linux:/etc/init.d">root@sean-linux:/etc/init.d# service mysql stop
* Stopping MySQL database server mysqld?? [ OK ]
root@sean-linux:/etc/init.d# update-rc.d -f mysql remove
Removing any system startup links for /etc/init.d/mysql ...
/etc/rc0.d/K21mysql
/etc/rc1.d/K21mysql
/etc/rc2.d/S19mysql
/etc/rc3.d/S19mysql
/etc/rc4.d/S19mysql
/etc/rc5.d/S19mysql
/etc/rc6.d/K21mysql
手動啟動
root@sean-linux:/etc/init.d# service mysql start
* Starting MySQL database server mysqld?? [ OK ]
* Checking for corrupt, not cleanly closed and upgrade needing tables.
手動停止
root@sean-linux:/etc/init.d# service mysql stop
* Stopping MySQL database server mysqld?? [ OK ]
添加自動啟動
root@sean-linux:/etc/init.d# update-rc.d -f mysql defaults
Adding system startup for /etc/init.d/mysql ...
/etc/rc0.d/K20mysql -> ../init.d/mysql
/etc/rc1.d/K20mysql -> ../init.d/mysql
/etc/rc6.d/K20mysql -> ../init.d/mysql
/etc/rc2.d/S20mysql -> ../init.d/mysql
/etc/rc3.d/S20mysql -> ../init.d/mysql
/etc/rc4.d/S20mysql -> ../init.d/mysql
/etc/rc5.d/S20mysql -> ../init.d/mysql
root@sean-linux:/etc/init.d#
----------------------------------------------------------------------------
補充
Ubuntu 取消 Apache及MySQL等自啟動
1. 裝個 sysv-conf-rc
2. sudo update-rc.d -f mysql remove 刪除mysql隨機器啟動的服務(wù)
sudo update-rc.d -f apache2 remove 刪除apache2隨機器啟動的服務(wù)
3. 查看/etc/rc2.d/里面的apache和mysql啟動腳本,通常都是兩個阿拉伯?dāng)?shù)字后再接一個英文字母,再加腳本名稱。英文字母是S的都是會自動啟動的,K則相反。所以只要找到apache和mysql的啟動腳本,把S改成K就可以了。
關(guān)鍵詞標(biāo)簽:Ubuntu,MySQL
相關(guān)閱讀
熱門文章 Xbox Game Pass 10款MySQL數(shù)據(jù)庫客戶端圖形界面管理工具推薦 MySQL常用維護管理工具 MySQL數(shù)據(jù)庫啟動失敗1067進(jìn)程意外終止的解決辦法總結(jié)
人氣排行 10款MySQL數(shù)據(jù)庫客戶端圖形界面管理工具推薦 MySQL數(shù)據(jù)庫啟動失敗1067進(jìn)程意外終止的解決辦法總結(jié) Mysql 1045錯誤解決辦法 MySQL服務(wù)器進(jìn)程CPU占用100%解決辦法 MySQL導(dǎo)出導(dǎo)入命令的用例 MySQL連接字符串的實際操作步驟匯總 MySQL無法啟動、無法停止各種解決方法總結(jié) 三種常用的MySQL建表語句