Ubuntu 安裝mysql

來源:互聯網
上載者:User

標籤:

如果在機器以前有安裝過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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.