1. mysql 접속
# mysql -u root -p
2. mysql db 접속
> use mysql
3. 패스워드 변경
mysql > update user set password=password('asdf1234') where user='root';
4. 저장
mysql >FLUSH PRIVILEGES;
5. mysql exit
mysql >exit
6. mysql 재시작
1. mysql 접속
mysql -u root -p
2. mysql db 접속
use mysql
3. 패스워드 변경
update user set password=password('asdf1234') where user='root';
4. 저장
FLUSH PRIVILEGES;
5. mysql exit
exit
6. mysql 재시작
# service mysql restart
--------------------------------------------------광고(Advertising)-------------------------------------------------------------------------------------