Development/JSP
mysql root password 변경
codedragon
2019. 10. 28. 13:59
반응형
XAMPP 설치 방법
https://codedragon.tistory.com/8806
XAMPP 설치 방법
XAMPP 설치 방법 · XAMPP - download(다운로드) · https://codedragon.tistory.com/7301 · XAMPP - install(설치하기) · https://codedragon.tistory.com/8520 · ..
codedragon.tistory.com
mysql root password 변경
· MySQL 서버 구동
· mysql 접속 확인
· root 계정의 PASSWOD 변경
MySQL 서버 구동
"XAMPP Control Panel"에서 MySQL항목의 [Start]버튼 클릭
[액세스 허용]
mysql 접속 확인
C:\xampp\mysql\bin 폴더로 이동
mysql
C:\xampp\mysql\bin>mysql Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 2 Server version: 10.1.30-MariaDB mariadb.org binary distribution Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> |
root 계정의 PASSWOD 변경
mysqladmin -u root PASSWORD 설정할비밀번호 |
mysqladmin -u root PASSWORD maria_1004
C:\xampp\mysql\bin>mysqladmin -u root PASSWORD maria_1004 C:\xampp\mysql\bin> |