또는









[MySql]is not allowed to connect to this MySQL server   프로그래밍  


mysql접속시 IP로 접속이 안되고 localhost등 이름으로만 접속되는 이유

 --> 접속가능한 IP로 등록이 되어 있지 않아 발생함

 

::Solution


mysql> grant all privileges on db이름.* to 사용자계정@'IP주소'

identified by '비밀번호' with grant option;

mysql> grant reload,process on *.* to admin@localhost;

mysql> FLUSH PRIVILEGES;



[출처] [MySql]is not allowed to connect to this MySQL server



(N20091213)


+ Recent posts