您好,登錄后才能下訂單哦!
本篇文章為大家展示了怎么設(shè)置mysql允許外部連接訪問(wèn),內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。
1.設(shè)置mysql允許外部連接訪問(wèn)(授權(quán)):
grant all privileges on *.* to root@'%' identified by '123456' with grant option; flush privileges;
例子:
查詢mysql用戶權(quán)限、授權(quán)、刷新使生效
select host, user from user; grant all privileges on *.* to root@'%' identified by '密碼' with grant option; flush privileges;
指定ip地址授權(quán):ip地址指的是連接時(shí)失敗報(bào)錯(cuò)1130彈出的地址
grant all privileges on *.* to root@'ip地址' identified by '密碼' with grant option; flush privileges;
沒(méi)有權(quán)限:
連接成功:
注:不管使用navicat還是命令窗口,都是去操作mysql庫(kù)中的user
1,可以使用navicat工具進(jìn)入到數(shù)據(jù)庫(kù)中mysql庫(kù)執(zhí)行語(yǔ)句;
2,使用命令執(zhí)行,進(jìn)入到命令窗口,登錄到mysql服務(wù)器進(jìn)入到mysql庫(kù)(use mysql)中,執(zhí)行以上授權(quán)語(yǔ)句即可。
連接服務(wù)器:
mysql -u root -p
進(jìn)入mysql數(shù)據(jù)庫(kù):
use mysql;
查看user表中的數(shù)據(jù):
select Host, User,Password from user;
第一種:修改user表的方法
修改user表中的Host:
update user set Host='%' where User='root';
第二種:授權(quán)的方法:將上面代碼換為授權(quán)的代碼即可;
grant all privileges on *.* to root@'%' identified by '密碼' with grant option;
最后刷新一下:
flush privileges;
2.設(shè)置mysql允許外部連接訪問(wèn)(修改表的方法):
update user set Host='%' where User='root'; flush privileges;
上述內(nèi)容就是怎么設(shè)置mysql允許外部連接訪問(wèn),你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。