CMS솔루션마켓, 이온디 - 워드프레스, 라이믹스, 카페24, 그누보드, 엑셀

홈페이지 제작팁

서버관리
2020.05.23 06:26

Mysql 비밀번호 변경하는 방법

조회 수 130 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

https://to-dy.tistory.com/58

http://blog.naver.com/PostView.nhn?blogId=tollu09&logNo=220845838393

https://inma.tistory.com/98

MySQL 비밀번호 변경

(1) MySQL 실행

$ mysql -u root -p
Enter password:
None

(2) 비밀번호 변경을 위해 mysql 데이터베이스 사용

mysql> use mysql;

Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
None

(3) 현재 암호 확인

// mysql 5.x 는 "password" 또는 "authentication_string"로 확인합니다.
mysql> select host, user, password from user;
mysql> select host, user, authentication_string from user;

// mysql 8.x
mysql> select host, user, authentication_string from user;
None

(4) 비밀번호 변경

root 계정의 비밀번호를 1234로 변경

// mysql 5.x
mysql> update user set password=password('1234') where user='root';
mysql> update user set authentication_string=password('1234') where user='root';

// mysql 8.x
mysql> alter user 'root'@'localhost' identified with mysql_native_password by '1234;
None

(5) 종료

변경사항을 적용하기 위해 아래 명령어를 실행한 후 종료하면 비밀번호 변경이 완료됩니다.

mysql> flush privileges;
mysql> quit
Bye
None


기존대댓글
추가시작 대댓글시작
대댓글끝 추가끝


List of Articles
번호 분류 제목 조회 수 추천 수
20 리눅스 Htop (Linux Process Monitoring) 사용법 file 1646 1
19 리눅스 postfix 메일에서 queue 관리 236 0
18 리눅스 pstree 현재 사용자 프로세스 확인 284 0
17 리눅스 How to remove imagemagick from Ubuntu 16.04 (Xenial Xerus) 293 0
16 리눅스 top 에서 실행 중인 프로세스에서 어떤 파일이 사용되는지 파악하는 방법 file 124 0
15 리눅스 NGINX PHP-FPM 업데이트 및 여러 버전 동시 연동 방법 181 0
14 리눅스 Linux/Ubuntu, 용량 큰 파일/디렉토리 찾아내기. file 635 0
13 리눅스 [Laravel] 라라벨 설치하기 PHP7.0 + Nginx 5 file 356 0
12 리눅스 루분투 X61 배터리 정보 1 file 170 0
11 VPS 리노드에서 서비스 변경했습니다. (160달러 -> 10달러로) file 176 0
10 VPS Linode VPS 디스크 용량 변경 방법 file 159 0
9 VPS Linode VPS의 새로운 콘트롤 패널 file 283 0
8 VPS 각종 클라우드 VPS 서비스 비교해본 소감 455 0
7 웹호스팅 http://rael.me/support.php secret 0 0
6 기타 무료 아마존 웹 서비스, 100% 알뜰하게 사용하는 방법 167 0
5 웹호스팅 a2hosting 웹호스팅 단점/후회/불만 249 0
4 기타 해외 호스팅의 결제 및 환불 (a2hosting 환불 했습니다.) file 451 0
3 기타 해외도메인 구입 사이트 gandi.net 363 0
2 웹호스팅 [해외]a2hosting 243 0
1 VPS 국내 클라우드 서버호스팅 비교(Virtual Private Server Review) 387 0
Board Pagination Prev 1 2 Next
/ 2