Questions tagged [puppet-enterprise]

Puppet Enterprise is the commercially supported and packaged release of Puppet.

Puppet Enterprise is the commercially supported and packaged release of Puppet.

It consists of a stack of various Puppet tools:

A Basic Split Installation

Related Tags

250 questions
0
votes
0 answers

Gluster puppet mount not working

I am trying to mount a gluster volume called storage-test on my webserver with the manifest syntax below: gluster::mount { '/glusterfs': ensure => present, volume => "storage:/storage-test", options => 'defaults', transport =>…
0
votes
1 answer

Troubleshooting Puppet Manifests for Windows puppet Node

I have puppet manifests which would download exe file and get installed in windows server.I am getting an error while running command: puppet agent -t on windows server. Manifests file: /etc/puppet/modules/mercury/manifests/iisserver.pp class…
varun
  • 1
  • 2
0
votes
1 answer

Execute command on all puppet nodes

I would like execute below simple command in all of my nodes which returns me whether symbolic links are available using puppet facter. 'ls -l | grep lrw | grep data' How to run this command and collect the results from one client ? I do not have…
0
votes
1 answer

Puppet: Unable to find role from puppet console

Puppetfile of Control repo forge "http://forge.puppetlabs.com" # Modules from the Puppet Forge # Versions should be updated to be the latest at the time you start mod "puppetlabs/inifile", '1.5.0' mod "puppetlabs/stdlib", '4.11.0' mod…
Raja G
  • 5,973
  • 14
  • 49
  • 82
0
votes
1 answer

Unable to access to Azure Puppet Enterprise console

I have provisioned an Azure VM based on Puppet Enterprise image, but I can't access to the console from https://.cloudapp.net as per this guide. I notice that my VM dns is https://.eastasia.cloudapp.net. I'm guessing I will need to update the host…
WenHao
  • 1,183
  • 1
  • 15
  • 46
0
votes
0 answers

puppet and puppetmaster won't start

I have been following a tutorial for installing tomcat using puppet master on CentOs. I have installed from the following repo then ran yum install. rpm -ivh http://yum.puppetlabs.com/puppetlabs-release-el-7.noarch.rpm and I am getting the…
0
votes
1 answer

Puppet 4.10.4: Master not reading manifest

So I've started to try and use puppet, and I thought i had configured correctly as the node will successfully connect to the master: C:\Windows\system32>puppet agent -t Info: Retrieving pluginfacts Info: Retrieving plugin Info: Loading facts Info:…
Junko142
  • 1
  • 3
0
votes
1 answer

I want to execute my custom facts which I made it in facter

# hardware_platform.rb Facter.add('hardware_platform') do setcode do Facter::Core::Execution.exec('/bin/uname --hardware-platform') end end I want to execute it and when I gave facter --puppet. This information is not coming in the facter…
ra_pri
  • 155
  • 2
  • 4
  • 20
0
votes
1 answer

Puppet Enterprise agent for AMZN Linux ami

Anyone able to install puppet enterprise agent on AWS Linux ami image (amzn-2017.03-x86_64.bash) OS on agent node is: uname -a: Linux ip-172-32-3-123 4.9.27-14.31.amzn1.x86_64 #1 SMP Wed May 10 01:58:40 UTC 2017 x86_64 x86_64 x86_64…
AD7
  • 105
  • 1
  • 11
0
votes
1 answer

puppet with multiple NFS mount on same server

I have few NFS mount points on the same server but different directories. ex: x.x.x.x:/stats /data/stats x.x.x.x:/scratch /data/scratch x.x.x.x:/ops /data/ops But when i try to run puppet it adds following to my fstab. (wrong…
Tharanga Abeyseela
  • 3,255
  • 4
  • 33
  • 45
0
votes
0 answers

Puppet : exec[] : wget returned 8 instead of 0

I am completely new to Puppet and this is my first time writing code in puppet. I want to get a tar.gz file and then untar it to create the folder. Here is my code: file{ "${::filename}.tar.gz": ensure => 'file', mode => '0644', notify =>…
user3519456
0
votes
0 answers

Getting "Archive[/tmp/${filename}] doesn't seem to be in the catalog" while executing my puppet program

My Puppet class looks like this: class aoa_agent_installation::splunk_install { $sourcefile = $osfamily ? { 'Solaris' => 'puppet:///modules/aoa_agent_installation/splunkforwarder-6.5.2-67571ef4b87d-SunOS-sparc.tar.Z', 'RedHat' =>…
Rohith
  • 1,077
  • 5
  • 16
  • 36
0
votes
1 answer

Centos 7 Puppet Enterprise installation - Connection refused on 4433 port

Installation of Puppet Enterprise on Centos 7 is failing due to the following error: "2017-06-21 07:11:41,242 - [Error]: Failed to apply catalog: Connection refused - connect(2) for "abc.xyz.com" port 4433" I have done the following steps: Install…
POJO
  • 41
  • 2
  • 8
0
votes
0 answers

Puppet manifests file which is running fine on windows 7, returning error on windows server 2008

I am working on the puppet manifests file to install and upgrade few of the application on the windows machine. The code I have made is doing exactly what I wanted on the windows 7 machine, but when the same code is running on the windows server…
anurag
  • 202
  • 3
  • 12
0
votes
0 answers

Error: /Stage[main]/Mcafeeepoagent/Service[cma]:

Error: /Stage[main]/Mcafeeepoagent/Service[cma]: Provider init is not functional on this host: I am using module Mcafeeepoagent puppet PE, on Linux REdHat my code: 1 class profile::mcafee_epo_agent ( 2 ){ 3 4 if $::kernel ==…
Moez
  • 1
  • 2