카이도스의 Tech Blog

mysql root 패스워드 초기화방법 본문

서버작업

mysql root 패스워드 초기화방법

카이도스 2022. 8. 3. 14:15
728x90
반응형
개요 : mysql root 패스워드 초기화방법
초기화 방법 :
1. mysql 정지
# /etc/init.d/mysql.server stop
2. --skip-grant-tables 옵션으로 시작
# /etc/init.d/mysql.server start --skip-grant-tables
3. 바로접속
# mysql -uroot -p
4. root 패스워드 수정
mysql 5.6 이하
mysql> update user set password=password(‘바꿀패스워드‘) where user=’root’;
mysql> flush privileges;
mysql 5.7 이상
mysql> UPDATE user set authentication_string=password(‘바꿀패스워드‘) where user=’root’;
mysql> flush privileges;
 
확인방법
다른 터미널로 mysql root 변경된 root 패스워드로 접속 시도 후 정상확인
# mysql -uroot -p
 
 
==========================
mariaDB 10.4 이상 패스워드 변경방법
1.alter user ‘root’@’localhost’ identified by 'Parkingys!@34';
flush privileges;

 

728x90
반응형
Comments