Hi everyone,

I am new to Puppet and try to make some simple "automation things".
I have succeed with apache2, ssh modules, but have problems with
Puppetlabs mysql module.

It installs mysql server, changes/creates admin user password, but
does not create database and user.
I cannot find anything wrong in logs (--debug --verbose). I see that
manifests is read, but no db/user in mysql.

There is all my node config:

      include openssh
      include apache
      include php
      php::module { "mysql": }
      include mysql

      class { 'mysql::server':
        config_hash => { root_password => "xxxx"}
      }

      mysql::db { 'mydb1':
        user     => 'user1',
        password => 'xxxxx1',
        host     => 'localhost',
        grant    => ['all'],
      }


      apache::virtualhost { "s1.test.com": }
      apache::virtualhost { "s2.test.com": }

What I have missed?

Thank You
Moteo

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to