루트 사용자는 MySql에 액세스할 수 없습니다.

루트 사용자는 MySql에 액세스할 수 없습니다.

로컬 MySql 서버가 있습니다. 시작되었으며 다음과 같은 로컬 사용자를 사용하여 액세스할 수 있습니다.

$ mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 66
Server version: 5.5.34-0ubuntu0.13.04.1 (Ubuntu)

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> exit

괜찮습니다. 하지만 루트를 사용하려고 하면 다음 메시지가 계속 나타납니다.

$ mysql -u root
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

무슨 뜻이에요? 이 문제를 어떻게 해결할 수 있나요?

편집하다

이것도 작동하지 않습니다 (실행 후 sudo mysql_install_db ).

$ /usr/bin/mysqladmin -u root password 'MyPass'
/usr/bin/mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: NO)'

답변1

사용해 보세요

mysql -u root -p

비밀번호 프롬프트가 나타납니다.

이것이 작동하지 않으면 다음을 참조하십시오.https://stackoverflow.com/questions/11760177/access-denied-for-root-user-in-mysql-command-line

관련 정보