网页调用程序时,出现这样的错误
DBI connect('host=192.168.29.100;database=pipeWeb','pipeline',...) failed: Access denied for user 'pipeline'@'192.168.29.100'
如何办?
原因是pipeline这个用户没有连接ip为192.168.29.100机器的权限。
解决方法:
grant all on pipeWeb.* to pipeline@'192.168.29.100' identified by '密码';
解析
grant all on 数据库.* to 用户名@'ip' identified by '密码';
详见上一篇日志:
DBI connect('host=192.168.29.100;database=pipeWeb','pipeline',...) failed: Access denied for user 'pipeline'@'192.168.29.100'
如何办?
原因是pipeline这个用户没有连接ip为192.168.29.100机器的权限。
解决方法:
grant all on pipeWeb.* to pipeline@'192.168.29.100' identified by '密码';
解析
grant all on 数据库.* to 用户名@'ip' identified by '密码';
详见上一篇日志: