접속 = > 로그인
mysql -u 사용자ID -p 패스워드
비밀번호 변경을 위해 mysql 데이터베이스로 지정
use mysql;
업데이트
기존
update user set password=password('비밀번호') where user='root';
형식으로 처리 되었으나 5.7 이후 부터 -아래- authentication_string 변경됨
update mysql.user SET authentication_string=PASSWORD('비밀번호') WHERE user='root';
FLUSH PRIVILEGES;