1. 程式人生 > >允許遠端使用者登入訪問MySql

允許遠端使用者登入訪問MySql

方法一、直接授權   [[email protected]]# mysql -u root -pyourpassword mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'yourpassword' WITH GRANT OPTION; mysql>FLUSH PRIVILEGES; #執行重新整理許可權   方法二:終極方法 註釋bind-address = 127.0.0.1 找到mysql.cnf 把bind-address = 127.0.0.1 前面加上 # 即  #bind-address = 127.0.0.1