2021.11.19
[에러 메세지]
Access denied for user 'userid'@'ip' (using password: YES)}
1. mysql root 접속
mysql -uroot -p
2. 외부 접속 권한 허용해주기
mysql> grant all privileges on *.* to ‘userid’@‘허용ip’ identified by ‘password’;
3. 외부 원격 접속 테스트
mysql -h192.168.xx.xxx -uuserid -p