--have a look at http://www.slideshare.net/johandw/bpug-mcollective-20140624
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/a45175ff-e932-40dc-83de-681837919cb1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
-- Johan De Wit Open Source Consultant Red Hat Certified Engineer (805008667232363) Puppet Certified Professional 2013/2014 (PCP0000006) _________________________________________________________ Open-Future Phone +32 (0)2/255 70 70 Zavelstraat 72 Fax +32 (0)2/255 70 71 3071 KORTENBERG Mobile +32 (0)474/42 40 73 BELGIUM http://www.open-future.be _________________________________________________________
Upcoming Events:
Linux Training | https://www.open-future.be/linux-training-8-till-12th-september
Puppet Introduction Course | https://www.open-future.be/puppet-introduction-course-15th-september
Puppet Fundamentals Training | https://www.open-future.be/puppet-fundamentals-training-16-till-18th-september
Zabbix Certified Specialist | https://www.open-future.be/zabbix-certified-specialisttraining-22-till-24th-september
Zabbix Certified Professional | https://www.open-future.be/zabbix-certified-professional-training-25-till-26th-september
Subscribe to our newsletter: http://eepurl.com/BUG8H
> 13. mailto:puppet-users+unsub...@googlegroups.com
> > 13. mailto:[27]puppet-users+unsub...@googlegroups.com
> 30. mailto:puppet-users+unsub...@googlegroups.com
***********************************************************
node 'broker1.example.com' { class { '::mcollective': middleware => true, middleware_hosts => [ 'broker1.example.com' ], } } node 'server1.example.com' { class { '::mcollective': middleware_hosts => [ 'broker1.example.com' ], } } node 'control1.example.com' { class { '::mcollective': client => true, middleware_hosts => [ 'broker1.example.com' ], } }
***************************************
In init.pp, the default value for each component is:
$server = true,
$client = false,
$middleware = false,
In the example, for both broker (middleware) and control1(client), it doesn't specify value for $server.
So it means both middleware and client will get the default value ($server = true).
Is this correct? Should server should be installed on middleware and client?
I think the server should not be installed on middleware and client.
We should specfiy $server=false for both middleware and client to overwrite the default value of true.
Please correct me if I am wrong.
Also can I installed both middleware and client on one machine, which is my puppet master machine?
Thanks!!
...> 22. <a href="https://www.open-future.be/puppet-introduction-course-15th-september" target="_blank" onmousedown="this.href='https://www.google.com/url?q\75https%3A%2F%2Fwww.open-future.be%2Fpuppet-introduction-course-15th-september\46sa\75D\46sntz\0751\46usg\75AFQjCNH3xt-gECp7eLQcHKrwSaNmOQjVAA';return true;" onclick="this.href='https://www.google.com/url?q\75http
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users...@googlegroups.com.To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/41b6b478-0a39-4e25-a297-b7d771afbec4%40googlegroups.com.
> > 13. mailto:[27]puppet-users+unsubscr...@googlegroups.com
...
node 'broker1.example.com' { class { '::mcollective': middleware => true, middleware_hosts => [ 'broker1.example.com' ], } } node 'server1.example.com' { class { '::mcollective': middleware_hosts => [ 'broker1.example.com' ], } } node 'control1.example.com' { class { '::mcollective': client => true, middleware_hosts => [ 'broker1.example.com' ], } }
> > > 13. mailto:[27]puppet-users+unsub...@googlegroups.com
> 54. mailto:puppet-users+unsub...@googlegroups.com
Hi,
A couple of side notes.
1. You can use the mcollective::plugin defined type to install the different agents
2. It's recommended to use SSL for authentication to enhance security. ( in fact not using it is very insecure)
Regards,
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/f75ad7b0-f683-4b25-bcce-3f5bb418e6af%40googlegroups.com.
> > > 13. mailto:[27]puppet-users+unsubscr...@googlegroups.com
...