MySQL 5.7.9 릴리즈 변화된 root 비밀번호 변경하기Database2015. 11. 18. 21:32
Table of Contents
Mac 환경에서 MySQL 5.7.9 버젼 설치 후 root 접속 시도 시 패스워드 장애로 MySQL 접속이 불가능하다.
sudo /usr/local/mysql/support-files/mysql.server stop
sudo mysqld_safe --skip-grant-tables
mysql -u root
update mysql.user set password=password('2261bbs') where user='root';
콘솔 윈도우에서 mysqld_safe 실행으로 safe 모드로 MySQL 데몬을 구동하고 다른 콘솔 윈도우를 띄어 MySQL에 접속한다.
mysql -u root
접속 후 다음 명령어로 root 비밀번호를 업데이트한다.
[5.7 이전 버젼]
update mysql.user set password=password('2261bbs') where user='root';
FLUSH PRIVILEGES;
[5.7 이후 버젼]
update user set authentication_string=password('2261bbs') where user='root';
FLUSH PRIVILEGES;
(5.7 이후 버젼에는 password 필드가 존재하지 않는다.)
설정 후 MySQL 접속 후 명령을 실행하게 되면 다음과 같은 장애가 발생한다.
mysql> SELECT 1;
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
위와 같은 오류가 발생하는 경우 다음과 같은 명령어를 실행한다.
mysql> SET PASSWORD = PASSWORD('2261bbs');
mysql> SELECT 1;
+---+
| 1 |
+---+
| 1 |
반응형
'Database' 카테고리의 다른 글
HDP 2.5 Vmware 환경에서 Apache Phoenix 설치 (0) | 2017.02.24 |
---|---|
MySQL 데이터베이스 상태 모니터링 쿼리 (0) | 2017.01.18 |
MySQL 데이터베이스에서 mysqldump 명령어를 이용한 procedure, function, trigger 포함 백업 및 복구 방법 (0) | 2015.06.13 |
MySQL에서 관리자(root) 비밀번호 생성 명령어 (0) | 2014.10.08 |
CentOS 6.2 환경에서 yum 명령어를 이용한 MySQL 설치와 root 패스워드 초기화 방법 (0) | 2012.11.28 |
@kogun82 :: Ctrl+C&V 로 하는 프로그래밍
Korean BioInformation Center(KOBIC) Korea Research Institute of Bioscience & Biotechnology Address: #52 Eoeun-dong, Yuseong-gu, Deajeon, 305-806, KOREA +82-10-9936-2261 e-mail: kogun82@kribb.re.kr Blog: kogun82.tistory.com Homepage: www.kobic.re.kr
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!