grant remote access of MySQL database from any IP address

后端 未结 21 1630
伪装坚强ぢ
伪装坚强ぢ 2020-11-22 09:18

I am aware of this command:

GRANT ALL PRIVILEGES
ON database.*
TO \'user\'@\'yourremotehost\'
IDENTIFIED BY \'newpassword\';

But then it on

21条回答
  •  庸人自扰
    2020-11-22 09:30

    You need to change the mysql config file:

    Start with editing mysql config file

    vim /etc/mysql/my.cnf
    

    add:

    bind-address = 0.0.0.0
    

提交回复
热议问题