Siavosh
Siavosh

Reputation: 2354

Vagrant PuphPet mysql is not installed

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: ''

enter image description here

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

Answers (2)

Brett F
Brett F

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

Siavosh
Siavosh

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

Related Questions