connection - Connect to MySQL database on vagrant machine in PhpStorm -
i can not create connection mysql database in vagrant machine phpstorm.
my settings are:
database tab:
- host: 127.0.0.1
- port: 3306
- user: root
- password: root_passsword
ssh/ssl tab:
- proxy host: 192.168.56.102
- port: 22
- proxy user: vagrant
- proxy password: vagrant
can me? thanks
in ssh/ssl tab, select auth type key pair
, copy path private key file define in identityfile
. instance c:/virtualm/deb56/puphpet/files/dot/ssh/id_rsa
$vagrant $vagrant ssh-config host local hostname 127.0.0.1 user vagrant port 2222 userknownhostsfile /dev/null stricthostkeychecking no passwordauthentication no identityfile "c:/virtualm/deb56/puphpet/files/dot/ssh/id_rsa" identityfile "c:/users/user/.vagrant.d/insecure_private_key" identitiesonly yes loglevel fatal
Comments
Post a Comment