4

I would like to setup Central Management Server (PUPPET) to manage all clients. I have read many documentations, but none of them was helpful. Can anyone explain setting up puppet server in detail?

Where we have to create the following files in server or in client?

Now setup some resources for apache2. Create a file /etc/puppet/manifests/site.pp containing the following:

package {
'apache2':
    ensure => installed
}

service {
'apache2':
    ensure => true,
    enable => true,
    require => Package['apache2']
}
bain
  • 11,260
karthick87
  • 81,947
  • Do you want this from installing to a working prototype? It might be better to ask for specific problems ;) From what I can tell they call the server Puppetmaster and /etc/puppet/ seems to point to a client. – Rinzwind Aug 29 '11 at 17:02
  • This page seems to be thourough and explains things rather nicely: http://projects.puppetlabs.com/projects/puppet/wiki – Rinzwind Aug 29 '11 at 17:04
  • The files in /etc/puppet/manifests are only used at the server. – Florian Diesch Aug 29 '11 at 18:14
  • On the client, can you run puppetd --test --debug and post the contents? – jrg Sep 12 '11 at 12:13
  • 2
    You ask several different questions and the way your question is formulated at the moment is confusing in that it's unclear what you need help with and what you've solved. This site works best if you ask one at question a time and if you clearly describe your situation and what guide you use. – N.N. Sep 12 '11 at 13:26
  • Yeah fine that would be better. I will ask it as a seperate question. – karthick87 Sep 12 '11 at 13:48

1 Answers1

2

As all the existing docs didn't help you it's quite unlikely that just writing a new one will work better for you.

Instead please follow the explanation given in the Ubuntu Server Guide and tell us what doesn't work for you and what additional questions you have.