asp.net + mysql + ubuntu 问题集锦

项目环境: 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)

解决方法参考:

http://stackoverflow.com/questions/22510457/reference-mysql-connector-net-authentication-to-host-using-method-mysql-native


其实最终发现自己犯的是比较低级的错误:在给远程用户赋权限的时候 

grant all privileges on mydb.* to [email protected] identified by ‘mypqd‘ with grant option;

[email protected]这里@之后的ip是你自己的ip(即:远端ip)


本文出自 “狼之魂” 博客,请务必保留此出处http://itwolf.blog.51cto.com/3286625/1656741

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。