Linux 下允許外部ip訪問你到MySQL 資料庫

來源:互聯網
上載者:User

Linux 下允許外部ip訪問你到MySQL 資料庫:

1:設定mysql 的設定檔

/etc/mysql/my.cnf

找到 bind-address  =127.0.0.1  將其注釋掉;//作用是使得不再只允許本地訪問;

重啟mysql:/etc/init.d/mysql restart;

2:進入mysql 資料庫

mysql -u  root -p

mysql>grand all privileges on  *.*  to root@'%'  identifies  by ' xxxx';

其中 第一個*表示資料庫名;第二個*表示該資料庫的表名;如果像上面那樣 *.*的話表示所有到資料庫下到所有表都允許訪問;

‘%’:表示允許訪問到mysql的ip地址;當然你也可以配置為具體到ip名稱;%表示所有ip均可以訪問;

後面到‘xxxx’為root 使用者的password;

相關文章

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.