mysqlデータベースのリモートアクセスが可能な配置方法

628 ワード

参考:http://wiki.ubuntu.org.cn/MySQL%E5%AE%89%E8%A3%85%E6%8C%87%E5%8D%97
 
1.MySQLの取り付け
sudo apt-get install mysql-server
 2.
ユーザーにリモート接続を許可する
grant all privileges on *.* to root@"%" identified by "password" with grant option;
   
flush privileges;
 3.my.cnfプロファイルを修正する
vim /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