码迷,mamicode.com
首页 > 数据库 > 详细

Access denied

时间:2015-05-26 17:59:12      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

Problem:

Below error encounterred when connecting to remote server in PHP code.

Access denied for user ‘root‘@‘192.168.233.163‘ (using password: YES)

Solution:

Run below command under root 

Command 1

GRANT ALL PRIVILEGES ON *.* TO ‘USERNAME‘@‘IP‘ IDENTIFIED BY ‘PASSWORD‘;

  

where IP is the IP you want to allow to access and USERNAME is the user you use to connect

If you want to allow access from any IP just put % instead of your IP

 

Command 2

FLUSH PRIVILEGES;

  

This command is to make setting take effect.

Access denied

标签:

原文地址:http://www.cnblogs.com/binglong/p/4531021.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!