標籤:
如果在機器以前有安裝過Mysql,在重新安裝Mysql前最好把之前的內容卸載乾淨,不然有可能出現不可預見的問題。
/** * @author jenkiHuang * @email [email protected] * @version 20150402 * ///刪除已有的mysql,清理殘留資料sudo apt-get autoremove --purge mysql-server-5.0sudo apt-get remove mysql-serversudo apt-get autoremove mysql-server//這條很重要sudo apt-get remove mysql-common//安裝 mysqlsudo apt-get install mysql-server//登入mysqlmysql -uroot -p//重啟mysqlsudo service mysql restart
執行上面命令後,可以在本地實現登入mysql資料庫。但是如果是項目組多人開發,必定會有多人串連資料庫,這樣就必須修改資料庫的設定檔。
//遠端連線mysqlsudo vi /etc/mysql/my.cnf//找到bind-address = 127.0.0.1//注釋掉這行,如:#bind-address = 127.0.0.1//或者改為: bind-address = 0.0.0.0//允許任意IP訪問;或者自己指定一個IP地址。//重啟 MySQL:sudo /etc/init.d/mysql restart//授權使用者能進行遠端連線grant all privileges on *.* to root@"%" identified by "123456" with grant option;//重新整理許可權資訊,設定馬上生效flush privileges;
轉載:http://www.jenkihuang.com/experience/2015/04/ubuntu-install-mysql.html
Ubuntu 安裝mysql