search for: config_hash

Displaying 7 results from an estimated 7 matches for "config_hash".

Did you mean: config_chash
2013 May 02
2
Puppet 3.1.1, hiera and parameter autoload
Hello all, I don''t know if I have hit a strange bug or it''s just an incorrect interpretation about how parameter autoloading works... Today I have been searching, analysing and about to hit my head against a wall trying to figure out why a call to hiera_hash was not merging data from top level among different hierarchies. The problem was that I was trying to do something
2013 Apr 04
5
Unable to set MySQL root password
Hi, Using this module https://forge.puppetlabs.com/puppetlabs/mysql as described on documentation: class { ''mysql::server'': config_hash => { ''root_password'' => ''foo'' } } But, couldn''t set password after logging getting error: Access denied for user ''root''@''localhost'' (using password: YES) System:Ubuntu 12.10 -- You received this message bec...
2012 Mar 12
5
Database and user not created (Puppetlabs mysql module)
...rong 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'...
2012 Jul 30
0
Defining node types in modules
...etdashboard_mysql.pp class zen_puppet01opslab::puppetdashboard_mysql { class { ''mysql'': } # ''mysql::ruby'': # ''mysql::server'': mysql::ruby { ''bleh'': } mysql::server { ''bleh'': config_hash => { ''root_password'' => ''secretmysqlpassword'' } } } -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/...
2013 Nov 22
0
Puppet Enterprise 3.1 Install Issues
...s are welcome. For details: http://www.ruby-lang.org/bugreport.html /etc/puppet/utilities: line 735: 12081 Aborted /opt/puppet/bin/puppet apply --no-report --modulepath /opt/puppet/share/puppet/modules -v --exec "class { pe_postgresql: version => ''9.2'', config_hash => { listen_addresses => ''localhost'', ip_mask_allow_all_users => ''0.0.0.0/0'' } }" However, the puppet master started automatically and it is running. But I get errors when verifying my license. I executed "puppet license" and got the f...
2012 Aug 01
0
Issues with some modules !!!
...password is not set, it is neither not blank nor does it set the password that I have mentioned. The nodes.pp that I am using is as follows [root@pmast1 manifests]# cat /etc/puppet/manifests/nodes.pp class baseclass { class { ''mysql'': } class { ''mysql::server'': #config_hash => { ''root_password'' => ''mypass'' } } mysql::db { ''mydb'': user => ''myuser'', password => ''mypass'', host => ''localhost'', grant => [''all''], } } nod...
2013 Mar 21
6
How we can create two database Using same credetial using Puppet
Hello All, I wanted to create two two MySQL database with same user credential using Puppet-MySQL. How can I achieve this? Please find my script below. class mysql::vsdatabase { include mysql mysql::db { ''vidispine'': user => ''user'', password => ''user123'', host => ''db.<hostname>.com'', } } How can I add