-->

DEVOPSZONES

  • Recent blogs

    Install Puppet Client in RHEL 7

    Install Puppet Client in RHEL 7



    1. Get the Repo
    wget http://yum.puppetlabs.com/puppetlabs-release-el-7.noarch.rpm





    2. Install Puppet repository
    rpm -ivh puppetlabs-release-el-7.noarch.rpm

    3. Install Puppet agent.
    yum install puppet

    4. Edit Configurations and add Puppet server Name.
    vi /etc/puppet/puppet.conf
    server = Server FQDN

    5. Start Puppet Service
    /bin/systemctl start  puppet.service

    6. Enable Puppet Service
    systemctl enable puppet.service

    7. Register Puppet client.
    puppet agent  -t -w 60


    No comments