Linux

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 '12345qwert' with grant option' at line 1

Naan 2024. 9. 14. 00:58
320x100

 

mysql 계정 생성 할때

mysq 8.x 이하 버전에서는

grant all privileges on confluence.* to confluence@localhost identified by '12345qwert@' with grant option;

이렇게 명령어를 적었지만 이렇게 적으면

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 '12345qwert' with grant option' at line 1

에러가 뜬다.

mysql 8.x 버전 이상일때는

create user confluence@'%' identified by '12345qwert';

grant all privileges on confluence.* to confluence@'%';

flush privileges;

이렇게 해주면 된다.

 

 

 

320x100