Mac의 sql8에 ERROR 1045(28000)가 나타납니다. Access denied for user'root'@'localhost'(using password: YES)
./mysql -u root -p
오류 보고:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
방법:
1. 애플->시스템 선호 설정->맨 밑에 mysql를 누르고 mysql 서비스를 닫는다.단말기
cd /usr/local/mysql/bin/
3. 관리자 권한
sudo su
4. 리턴은 mysql 검증 기능을 금지하고 mysql는 자동으로 리셋되며 선호 설정 중인 mysql 상태는running으로 변합니다
./mysqld_safe --skip-grant-tables &
5. sql 입장
./mysql
분호에 주의하다
flush privileges;
새 sql 문법입니다.
set password for 'root'@'localhost' = 'root';
정상 재로그인:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 9
Server version: 8.0.19 MySQL Community Server - GPL
Copyright (c) 2000, 2020, 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.
https://blog.csdn.net/z90818/article/details/88106973
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.