mysql远程创建database错误Access denied for user ... to database ...

问题:

mysql远程创建database错误Access denied for user ... to database ...

解决:

#mysql -u root -p

>grant all privileges on database.* to 'sa'@'%' identified by 'password' with grant option;

猜你喜欢

转载自my.oschina.net/duojin/blog/1810143