The password for mysql is not set.
Need's to be configured manually if you want to manage all databases with phpmyadmin.
In the console after you type vagrant up:
vagrant ssh
sudo su
Log in to mysql:
mysql -uroot
inside mysql:
FLUSH PRIVILEGES;
SET PASSWORD FOR root@'localhost' = PASSWORD('vagrant');
Exit mysql console:
exit;
Back to the file system:
/etc/init.d/mysql stop
/etc/init.d/mysql start
The password for mysql is not set. Need's to be configured manually if you want to manage all databases with phpmyadmin. In the console after you type vagrant up: vagrant ssh sudo su Log in to mysql: mysql -uroot inside mysql: FLUSH PRIVILEGES; SET PASSWORD FOR root@'localhost' = PASSWORD('vagrant'); Exit mysql console: exit; Back to the file system: /etc/init.d/mysql stop /etc/init.d/mysql start