본문 바로가기
MySql

MySQL 오류 1044 (42000) : '@'localhost '사용자가'db '데이터베이스에 대한 액세스가 거부되었습니다.

by 베이스 공부 2020. 9. 23.
반응형

MySQL에서 쿼리 작성을 시작하고 싶습니다.

쇼 보조금 쇼 :

+--------------------------------------+
| Grants for @localhost                |
+--------------------------------------+
| GRANT USAGE ON *.* TO ''@'localhost' |
+--------------------------------------+

사용자 ID는 없지만 사용자를 만들고 싶을 때 권한이없고, 사용자가 한 명도 없어도 권한을 만드는 방법도 모르겠어요!

mysql> CREATE USER 'parsa'@'localhost' IDENTIFIED BY 'parsa';
ERROR 1227 (42000): Access denied; you need (at least one of) the CREATE USER pr
ivilege(s) for this operation

루트로 로그인을 시도했습니다.

mysql> mysql -u root -p;
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 'mysql
 -u root -p' at line 1
mysql> mysql -u root -p root;
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 'mysql
 -u root -p root' at line 1

 

해결 방법

 

아니요, MySQL 명령 줄이 아닌 bash에서 mysql -u root -p 를 실행해야합니다. mysql을 사용하는 경우 exit 를 입력하여 종료 할 수 있습니다.

 

참조 페이지 https://stackoverflow.com/questions/8838777

 

 

반응형

댓글