centos 7 에서 mysql 8.0 패스워드 분실 시 root 패스워드 초기화
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_OP..
self training/lin
2024. 11. 14. 09:56
Linux Login Incorrect 반복 로그인 불가 증상 발생 시
OS 재부팅 후 키보드 'e' 키를 입력하여 편집 모드로 진입 'LANG=en_US.UTF-8' 문자열 뒤에 'init=/bin/sh' 행을 추가 후 Ctrl+X 키를 입력하여 쉘로 진입 mount -o remount,rw / vi /etc/pam.d/login 로 auth required /lib/security/pam_securetty.so 라는 문장이 있다면 auth required /usr/lib64/security/pam_securetty.so 로 수정하고 저장 touch /.autorelabel exec /sbin/init
self training/lin
2023. 12. 27. 13:05