1. mysql 실행파일이 있는 위치에서 mysql을 실행시킨다.
mysql -u root -p
2. 비밀번호(암호) 변경을 위해 데이터베이스로 mysql을 지정한다.
mysql> use mysql;
3. 현재 비밀번호 확인 (선택사항)
mysql> select host, user, password from user;
4. 계정의 암호를 변경한다.
- 여기서는 root 계정의 암호를 asdf1234로 변경했음
mysql> update user set password=password('asdf1234') where user='root';
5. 변경된 비밀번호 확인 (선택사항)
mysql> select host, user, password from user;
6. mysql 종료
mysql> exit
7. MySQL 서버를 재가동(Restart) 시킨다.
참조
https://www.linux.co.kr/database/mysql/root-passwd-change.htm
제목 | 날짜 | ||
---|---|---|---|
599 | [리눅스서버] ./configure : /bin/sh^M : bad interpreter [duplicate] | 145 | 2018/07/29 |
598 | [기타] G Suite - | 0 | 2018/07/26 |
597 | [MySQL] MySQL 사용자 테이블 생성 및 연결하기 | 93 | 2018/06/24 |
596 | [Nginx] [Nginx] Rewriterule 서브 도메인 입력시 하위 디렉토리로 이동하기 | 501 | 2018/05/15 |
595 | [Nginx] https가 아닐 경우 https로 리다이렉트하는 방법 | 170 | 2018/04/25 |
594 | [Nginx] nginx-redirects-http-to-https-and-www-to-non-www | 79 | 2018/04/21 |
593 | nginx https redirect www to non-www | 231 | 2018/04/04 |
592 | [리눅스서버] mysql strict mode 끄기 | 888 | 2018/03/29 |
591 | [리눅스서버] Ubuntu php7.0-fpm 세팅 중 오류 | 76 | 2018/03/25 |
590 | [리눅스서버] Ubuntu 16.04 | root 계정으로 로그인하기, root 계정으로 ssh 접속하기 | 91 | 2018/03/21 |
589 | [MySQL] Mysql Join 해부(Left, Right, Outer, Inner Join) | 154 | 2018/01/03 |
588 | HTTrack Website Copier 한글 언어팩 | 603 | 2018/01/03 |