grant
all
privielges
on
*.*
to
'root'@'192.168.0.2'
identified
by
'密码'
了吗?没有的化试试吧。
还有就是看看虚拟机的防护墙是不是开了。
mysqladmin-h
hostname
flush-privileges
use
mysql
update
user
set
password
=password('yourpass')
where
user='root'
出现无法连接数据库的话,命令行用root用户登陆,敲下面命令:
set
password
for
sns@'localhost'=old_password('sns')
然后刷新mysql权限
flush
privileges
导入数据的方法
mysql
-u
name
-p
--default-character-set=utf8
databasename
<
path\*.sql
create
database
name
character
set
utf8
如果出现#1251
-
client
does
not
support
authentication
protocol
requested
by
server的错误:
解决办法:先用root登录mysql服务器,执行
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)