grant remote access of MySQL database from any IP address

后端 未结 21 1585
伪装坚强ぢ
伪装坚强ぢ 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条回答
  •  Happy的楠姐
    2020-11-22 09:36

    what worked for on Ubuntu is granting all privileges to the user:

    GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'yourpassword' WITH GRANT OPTION;
    

    and setting the bind address in /etc/mysql/mysql.conf.d/mysqld.cnf:

    bind-address            = 0.0.0.0
    

    then restarting the mysql daemon:

    service mysql restart
    

提交回复
热议问题