Ubuntu 安裝 MYSQL

來源:互聯網
上載者:User

標籤:blog   http   使用   os   檔案   資料   

1. 安裝MySQL

sudo apt-get install mysql-server

2.修改MYSQL root使用者密碼

預設的MySQL安裝之後根使用者是沒有密碼的,所以首先用根使用者進入:
$mysql -u root -p
mysql>use mysql; update user set password=PASSWORD(‘panpan‘) where user=‘root‘;flush privileges;
修改密碼為 panpan

3.修改MYSQL root使用者遠端存取許可權

首先修改設定檔 sudo vim /etc/mysql/my.cnf
bind-address=127.0.0.1 => bind-address= 你機器的IP
重啟mysql
sudo /etc/init.d/mysql restart

本機登陸mysql:mysql -u root -p
然後輸入密碼 panpan
use mysql;
grant all privileges on . to [email protected]“%” identified by “panpan” with grant option;flush privileges;
進mysql庫查看host為%的資料是否添加:use mysql; select * from user;

這樣就可以使用navicat 進行訪問登入了 3306 /192.168.1.21 /root /panpan

4.增加新使用者panyingyun 並建立資料庫mame,讓它只能對mame資料庫進行訪問

本機登陸mysql:mysql -u root -p
mysql>create database mame;
mysql>grant all privileges on mame.* to [email protected]“%” identified by “panpan” with grant option;flush privileges;
這樣就可以使用navicat 進行訪問登入了 3306 /192.168.1.21 /panyingyun /panpan

參考文獻:

  1. http://wiki.ubuntu.org.cn/MySQL%E5%AE%89%E8%A3%85%E6%8C%87%E5%8D%97
  2. http://www.cnblogs.com/wuhou/archive/2008/09/28/1301071.html
  3. http://tech.sina.com.cn/s/s/2008-12-24/09322685698.shtml
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.