Reputation: 2354
I am trying to set up a development environment with the help of vagrant and puphpet I set some settings through the puphpet website then downloaded the file when I run vagrant up everything goes fine and I can ssh through the machine but mysql is not installed this is the setting in the config of my config.yaml
mysql:
install: '1'
root_password: ''
adminer: '1'
databases:
PMgPjSFyp8dY:
grant:
- ALL
name: dbname
host: localhost
user: dbuser
password: '123'
sql_file: ''
My question is this : why mysql is not installed does it depend on any other configuration? or anything is wrong with my config file?
thanks for any help in advance
Upvotes: 1
Views: 847
Reputation: 414
I had the same issue. It worked for me after I put in a password for the root MySQL user in the config.yaml file.
Upvotes: 5
Reputation: 2354
It seems that at the moment Pupphet has some bugs and didn't meet my requirements, so far the link provided, met with my requirements
https://github.com/bryannielsen/Laravel4-Vagrant
I hope it'd help others as well
Upvotes: 1