728x90
출처: MySQL root 패스워드 분실 - 제타위키 (zetawiki.com)
MySQL 초기 패스워드 지정MySQL root 패스워드 분실MySQL root 패스워드 초기화MySQL root 패스워드 재설정
1 mysqld 중지
Bash
Copy
systemctl stop mysqld # CentOS
systemctl stop mysql # Ubuntu
Console
Copy
[root@localhost ~]# systemctl stop mysqld
[root@localhost ~]#
2 mysqld_safe 실행
- 인증 생략 옵션 + 안전모드로 데몬 실행
Bash
Copy
/usr/bin/mysqld_safe --skip-grant &
/usr/bin/mysqld_safe --skip-grant-tables &
Console
Copy
[root@localhost ~]# /usr/bin/mysqld_safe --skip-grant-tables &
[1] 32055
Starting mysqld daemon with databases from /var/lib/mysql
→ 이제 패스워드 없이 mysql에 접속할 수 있게 되었다.[1]
3 새 패스워드 지정
mysql 콘솔로 들어가자.[2]
Bash
Copy
/usr/bin/mysql -u root mysql
다음 SQL 명령어를 입력하여 원하는 패스워드로 변경한다.
MySQL 5.7.6 이상
MySQL
Copy
ALTER USER 'root'@'localhost' IDENTIFIED BY '패스워드';
MySQL 5.7.5 이하
MySQL
Copy
-- MySQL 5.6에서 성공 ★
SET PASSWORD FOR 'root'@'localhost' = PASSWORD('패스워드');
MySQL
Copy
-- MySQL 5.7 이상
UPDATE mysql.user SET authentication_string=PASSWORD('패스워드') WHERE user='root' AND Host='localhost';
FLUSH PRIVILEGES;
MySQL
Copy
-- MySQL 5.7 미만
UPDATE mysql.user SET password=PASSWORD('패스워드') WHERE user='root' AND Host='localhost';
FLUSH PRIVILEGES;
실행 예시
Console
Copy
[root@localhost ~]# /usr/bin/mysql -uroot mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.0.77 Source distribution
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> update user set password=password('P@ssw0rd') where user='root';
Query OK, 3 rows affected (0.00 sec)
Rows matched: 3 Changed: 3 Warnings: 0
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql> quit
Bye
4 mysqld 재시작
이제 패스워드를 입력해야만 mysql을 사용할 수 있도록 하기 위해, mysqld를 재시작한다.
Bash
Copy
systemctl restart mysqld # CentOS
systemctl restart mysql # Ubuntu
Console
Copy
[root@localhost ~]# systemctl restart mysqld
[root@localhost ~]#
[1]+ Done /usr/bin/mysqld_safe --skip-grant
→ 백그라운드로 실행 중이던 무인증 안전모드 mysqld 프로세스가 중지되고 정상모드 mysqld로 재시작되었다.
5 같이 보기
6 참고
728x90
반응형
'정보관리(데이터베이스, DB) > MySQL' 카테고리의 다른 글
[MySQL] [08S01] Communications link failure (0) | 2023.08.01 |
---|---|
계정 접속상태 확인 & 계정 외부주소 접근허용 설정법 (0) | 2023.08.01 |
[Virtualbox] 버추얼박스에 설치한 MySQL 접속하기 (0) | 2023.08.01 |
mysql 원격접속하는 방법 (0) | 2023.08.01 |
docker를 사용해서 mysql 기동하는 방법 공유 (0) | 2023.08.01 |