Displaying 1 result from an estimated 1 matches for "mydb1".
Did you mean:
mydb
2012 Mar 12
5
Database and user not created (Puppetlabs mysql module)
...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::virt...