# 암호 변경
mysql> UPDATE user SET password = pawssword('new_password') where user = 'userid';
mysql> FLUSH privileges;
# 사용자 추가
mysql> INSERT INTO user(Host, User, Password) VALUES('localhost', '유저명', password('new_password'));
mysql> FLUSH privileges;
# 데이터베이스 추가 및 권한 주기
mysql> GRANT ALL privileges ON 데이터베이스명.* TO 유저명@localhost IDENTIFIED BY '유저패스워드';
mysql> FLUSH privileges;
Posted by 홍반장