ubuntu 設置開放 mysql 服務遠程訪問教程

字號:


    第一步,修改配置文件:
    vim /etc/mysql/my.cnf
    找到
    bind-address = 127.0.0.1
    改為:
    bind-address = 0.0.0.0
    #允許任意ip地址訪問
    也可以指定ip地址。
    重啟mysql:
    sudo /etc/init.d/mysqld restart
    第二步,修改數(shù)據(jù)庫配置:
    授權root用戶進行遠程連接
    grant all privileges on *.* to identified by password with grant option;
    flush privileges;
    第二行命令使設置生效。