我的设置步骤:
sudo apt-get install mysql-server
config.vm.forward_port 3066, 4567
另外在 vagrant 里加上一些其他的设置:
mysqld: ALL : ALLOW
和 mysqld-max: ALL : ALLOW
skip-external-locking
, 并且把bind-address
设置为0.0.0.0
弄好后从本机打入命令:mysql -uroot -h 127.0.0.1 -P 4567
得到是ERROR 2013 (HY000): Lost connection to MySQL server at 'reading initial communication packet', system error: 0
这样 port forward 是没问题了,但是不知道为什么始终被中断链接?