溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

MySQL在grant時(shí)報(bào)錯(cuò)ERROR?1064?(42000)如何解決

發(fā)布時(shí)間:2022-08-26 13:51:02 來源:億速云 閱讀:255 作者:iii 欄目:開發(fā)技術(shù)

本文小編為大家詳細(xì)介紹“MySQL在grant時(shí)報(bào)錯(cuò)ERROR 1064 (42000)如何解決”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“MySQL在grant時(shí)報(bào)錯(cuò)ERROR 1064 (42000)如何解決”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識(shí)吧。

網(wǎng)上查到的grant方式大多會(huì)報(bào)錯(cuò),主要原因是MySQL版本8.0后不能再使用原來的方式

查詢MySQL版本

SELECT version();

在8.0版本下

grant all privileges on test.* to test@'%' identified by '123456';

報(bào)錯(cuò)

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'identified by '123456'' at line 1

正確的grant方式

create user test@'localhost' identified by '123456';
grant all privileges on test.* to test@'localhost';
flush privileges;

MySQL8.0密碼登錄不上

alter user test@'localhost' identified with mysql_native_password by '123456';

補(bǔ)充:MySQL ERROR 1064 (42000)——不管怎樣grant總是報(bào)錯(cuò),怎么回事?

用過MySQL的朋友都知道,經(jīng)常會(huì)有一些grant(授權(quán))操作,不知道你有沒有遇到過這樣的問題。

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘identified by ‘123456’’ at line 1

MySQL grant的SQL

粘貼到終端執(zhí)行,報(bào)錯(cuò)!
每個(gè)字母敲后執(zhí)行,又報(bào)錯(cuò)!
反復(fù)確認(rèn)很多遍執(zhí)行,又又報(bào)錯(cuò)!

都要瘋了,怎么辦。別急,接著看文章。

版本的不同導(dǎo)致

首先,你先檢查一下你的MySQL版本, 大多數(shù)執(zhí)行報(bào)錯(cuò)的MySQL版本是8.0的,通過記憶甚至盲打命令都不層報(bào)錯(cuò)的,估計(jì)通常都是用的最多的5.7了。信不信呢?

用真實(shí)數(shù)據(jù)測試

1.先用MySQL 8.0試一下

mysql> grant all privileges on test.* to test@'%' identified by '123456';  
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'identified by '123456'' at line 1

報(bào)錯(cuò)了

2.再用MySQL 5.7試一下

mysql> grant all privileges on test.* to test@'%' identified by '123456';    
Query OK, 0 rows affected, 1 warning (0.08 sec)
mysql> flush privileges;

成功。

細(xì)心的朋友有沒有注意到返回結(jié)果里有一個(gè)信息:1 warning,是什么內(nèi)容呢?

mysql> show warnings;
+---------+------+------------------------------------------------------------------------------------------------------------------------------------+
| Level   | Code | Message                                                                                                                            |
+---------+------+------------------------------------------------------------------------------------------------------------------------------------+
| Warning | 1287 | Using GRANT for creating new user is deprecated and will be removed in future release. Create new user with CREATE USER statement. |
+---------+------+------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

原來在MySQL5.7的時(shí)候,官方就提示了,這個(gè)語法SQL將要被棄用了。

正確的執(zhí)行賦權(quán)

那么在MySQL8.0版本及以后,我們?nèi)绾握_執(zhí)行g(shù)rant呢?

先創(chuàng)建用戶,再賦予授權(quán)。

mysql> create user test@'localhost' identified by '123456';
Query OK, 0 rows affected (0.10 sec)

mysql> grant all privileges on test.* to test@'localhost';
Query OK, 0 rows affected (0.17 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.18 sec)

這個(gè)方法也適用MySQL5.7版本,所以建議大家以后使用這種方式賦權(quán),一鍵建用戶加賦權(quán)官方已經(jīng)棄用了。

讀到這里,這篇“MySQL在grant時(shí)報(bào)錯(cuò)ERROR 1064 (42000)如何解決”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI