标签:asp.net mysql web linux authentication
项目环境: asp.net + mysql
不想在PC上安装mysql, 直接使用之前在 Ubuntu 上安装好的Mysql数据库.本文主要会列出在开发过程中遇到的问题,拿出来给大家分享。
至于安装就不多说,可参考:CentOS7 + Apache2.4 + Mysql5.5 + PHP5.5
问题:
场景:宿主机访问虚拟机中的mysql,
安装配置可参考: http://www.2cto.com/database/201305/210279.html
Authentication to host ‘xxx‘ for user ‘xx‘ using method ‘mysql_native_password‘ failed with message: Access denied for user ‘xx‘@‘xxxx‘ (using password: YES)
解决方法参考:
其实最终发现自己犯的是比较低级的错误:在给远程用户赋权限的时候
grant all privileges on mydb.* to myusr@192.168.20.117 identified by ‘mypqd‘ with grant option;
myusr@192.168.20.117这里@之后的ip是你自己的ip(即:远端ip)
本文出自 “狼之魂” 博客,请务必保留此出处http://itwolf.blog.51cto.com/3286625/1656741
标签:asp.net mysql web linux authentication
原文地址:http://itwolf.blog.51cto.com/3286625/1656741