티스토리 뷰


systemctl stop mysqld


systemctl set-environment MYSQLD_OPTS="--skip-grant-tables"


systemctl start mysqld


mysql -u root -p


UPDATE mysql.user SET authentication_string = null where user = 'root';
FLUSH PRIVILEGES;
quit


mysql -u root -p


alter user 'root'@'localhost' identified with caching_sha2_password by '새로운비밀번호';
FLUSH PRIVILEGES;
quit


systemctl stop mysqld
systemctl unset-environment MYSQLD_OPTS
systemctl start mysqld

'self training > lin' 카테고리의 다른 글

[mysql] mysql 8.4 ver DB 자동 원격 백업 (CentOS 9 stream)  (1) 2024.12.17
scp 을 사용한 자동 백업  (0) 2024.11.05
watch -d -n 1 'command'  (0) 2024.06.07
yum update 시 failed  (0) 2024.04.25
vi, vim 여러 줄 한번에 주석  (0) 2024.02.21
댓글