Mysql

Vagrant链接数据库问题

  • 手动增加可远程访问数据库用户<不推荐>

mysql -uroot -p 
use mysql;
update user set host='%' where user='root'

  • 直接授权<推荐>

mysql -uroot -p 
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'youpassword' WITH GRANT OPTION;

-- 刷新权限
FLUSH PRIVILEGES;

文档信息

Search

    Table of Contents