Displaying 20 results from an estimated 1300 matches similar to: "tagged not working ?"
2012 Sep 24
4
Overriding variables.
I am trying to override variables in a class that is defined in the default
node profile. I want parent class to be included in every single node, but
override its variables in others. I have tried it several different ways
now, and every single time the variables either become unset (undefined) or
are set to the value of the first if statement.
Here is my current iteration of failure.
2008 Apr 17
4
looking for a way to remove module interdependencies
Hello List,
i''m running into an issue with puppet where I don''t know how to solve
correctly.
We''re managing applications and our monitoring (nagios) using puppet
using the following schema:
class nagios {
// ensure nrpe ist installed
// export a host definition
nagios::check { ''ping'': }
nagios::check { ''load'': }
...
2007 May 25
18
services do not get restarted
Hello List,
We are using puppet to manage a growing number of Debian Etch based
servers (currently 70). Since upgrading to 0.22.4 we encountered
a problem when services do not restarted on puppets request.
For example the Nagios remote plugin executor daemon (nrpe). It''s running
daemonized and its confiugration is located in /etc/nagios/nrpe.cfg. This
file is managed through puppet
2007 Dec 13
1
Help me understand class namespacing
I asked on IRC but no one responded.
Suppose the following:
class basenode {
include users
include security
class webserver {
include apache, php
}
}
node web1a {
include basenode::webserver
}
Does node web1a imply including users and security specified under
class basenode as well? Similarly, does this mean the same thing?
class basenode {
include users
include security
}
2015 May 01
0
Could not complete SSL handshake to Amazon EC2 host
>
> Oh my mistake. I mean nrpe without parameters. It should say something
> about SSL/TLS aktiv or so.
> You could test nrpe without SSL. Use nrpe -n - H host
This is what I see about ssl if I just run nrpe on the client without any
flags:
[root at ops:~] #nrpe| head -8
NRPE - Nagios Remote Plugin Executor
Copyright (c) 1999-2008 Ethan Galstad (nagios at nagios.org)
Version: 2.15
2015 May 01
0
Could not complete SSL handshake to Amazon EC2 host
Hi Eric,
> NRPE: Error receiving data from daemon
> Seems as this is not a SSL Problem. Do you have a nagios user account? Cat
> /etc/passwd
Yep! Both hosts have nagios user accounts.
Demonstrating from the client:
[root at ops:~] #id nagios
uid=2002(nagios) gid=2002(nagios) groups=2002(nagios),2008(nagioscmd)
And this is from the monitoring server:
[root at monitor1:~] #id
2011 Jul 07
4
I have a service that just wont restart.
For my nagios::nrpe class, I have the following service:
service {"nagios-nrpe-server":
ensure => running,
enable => true,
require => Package["nagios-nrpe-server"],
hasrestart => true,
restart => "/etc/init.d/nagios-nrpe-server restart",
subscribe =>
2015 May 01
0
Could not complete SSL handshake to Amazon EC2 host
This is strange...
Do you have SSL aktive on both systems? Run nrpr localy without parameters
(this should return some nrpe stats) and check ldd for libssl.
Am 01.05.2015 07:32 schrieb "Tim Dunphy" <bluethundr at gmail.com>:
> Hi Eric,
>
> Thanks for your reply. I do have nrpe running under xinetd on the host I'm
> trying to monitor.
>
> And running the
2015 May 02
0
Could not complete SSL handshake to Amazon EC2 host
>
> Not just /var/log/messages. Doesn't nrpe have a log file? Maybe even
> secure.
Hmmm I don't find any log specific to nrpe. In other words I don't see
/var/log/nrpe.log or whatever. :)
And when I tail -f /var/log/secure or /var/log/messages I don't see any
entries turning up in them when I hit the client with check_nrpe. I was
checking the logs on the client
2012 Mar 25
1
how to speed up OpenSSH command execution (and a speed analysis)
Hi.
I recently did some investigation about how to get out the last
microseconds of
executing commands via OpenSSH on remote host (of course I'm using
ConnectMaster).
MOTIVATION:
I'm introducing Nagios (well actualla Icinga) at the local institute.
We have
many active checks that must run locally on the remote hosts.
The "best" way to do this is using NRPE (Nagios Remote
2015 May 01
2
Could not complete SSL handshake to Amazon EC2 host
Hi
NRPE: Error receiving data from daemon
Seems as this is not a SSL Problem. Do you have a nagios user account? Cat
/etc/passwd
Am 01.05.2015 18:45 schrieb "Tim Dunphy" <bluethundr at gmail.com>:
> >
> > Oh my mistake. I mean nrpe without parameters. It should say something
> > about SSL/TLS aktiv or so.
> > You could test nrpe without SSL. Use nrpe -n -
2016 Aug 29
2
Loaded: not-found (Reason: No such file or directory)
Hi,
I am seeing the below issue.
[user~]# systemctl list-unit-files | grep nrpe
[user~]# service nrpe status
Redirecting to /bin/systemctl status nrpe.service
? nrpe.service
* Loaded: not-found (Reason: No such file or directory)*
Active: inactive (dead)
[user~]# rpm -qa | grep nrpe
nrpe-3.0-1.x86_64
nrpe-plugin-3.0-1.x86_64
[user~]#cat /etc/redhat-release
*CentOS Linux release 7.2.1511
2015 May 01
0
Could not complete SSL handshake to Amazon EC2 host
well. how about trying default setting and running nrped without xinetd.
--
Eero
2015-05-01 14:14 GMT+03:00 Tim Dunphy <bluethundr at gmail.com>:
> > This is strange...
> > Do you have SSL aktive on both systems? Run nrpr localy without
> parameters
> > (this should return some nrpe stats) and check ldd for libssl.
>
>
> I don't seem to have that command.
2012 Apr 25
3
Exec and snmpd restart question
Hello Pros and users of Puppet.
I have two problems with the following modul setup:
My first problem that i tried every combination of
require,notify,subscribe for the mail sending exec but it runs every
single time when i run the module no matter if the files changed or
not.
Second problem that puppet reports that snmpd was refreshed by two
resource and restarted but actually it doesnt happen.
2010 Sep 16
2
Can the require value be a function?
Hello
I have this
fly::create_dir { "/usr/share/mysql-zrm/pkgs" : mode => 0755, owner => bin,
group => bin }
==> creates the directory and parents .. it just does a mkdir -p with couple
test
so I have
file { "$client_package_file" :
path =>
"/usr/share/mysql-zrm/pkgs/$client_package_file",
2012 May 03
0
Strange situation with openssl and kernel
Hello,
On a VM guest (running under KVM) with CentOS 5.8, I yesterday strangely
got the following (see below).
The server runs apache/php/squirrelmail/postfix/dovecot/openldap and it
is a production server.
Do you advise to do some particular file system checks or other
settings? Any other advice?
Such errors have not appeared in the past.
Thanks,
Nick
System info:
2015 May 01
0
Could not complete SSL handshake to Amazon EC2 host
Hi
Does the deamon run under xinetd? Then you have to configure the only_from
in */etc/**xinetd.d**/**nrpe* to.
Regards
Eric
Am 01.05.2015 06:46 schrieb "Tim Dunphy" <bluethundr at gmail.com>:
> Hello,
>
> I am trying to monitor a host in the Amazon EC2 cloud.
>
> Yet when I try to check NRPE from the monitoring host I am getting an SSL
> handshake error:
2015 May 01
5
Could not complete SSL handshake to Amazon EC2 host
Hi Eric,
Thanks for your reply. I do have nrpe running under xinetd on the host I'm
trying to monitor.
And running the nrpe checl locally:
[root at ops:~] #/usr/local/nagios/libexec/check_nrpe -H localhost
NRPE v2.15
[root at ops:~] #grep only_from /etc/xinetd.d/nrpe
only_from = 127.0.0.1 216.120.248.126
And I do have port 5666 open on the security group for this host.
2015 May 01
2
Could not complete SSL handshake to Amazon EC2 host
> This is strange...
> Do you have SSL aktive on both systems? Run nrpr localy without parameters
> (this should return some nrpe stats) and check ldd for libssl.
I don't seem to have that command.
[root at monitor1:~] #find / -name "*nrpr" 2> /dev/null
[root at monitor1:~] #
And that's on either system.
And if I do an ldd on both, this is what I can tell:
2015 May 01
2
Could not complete SSL handshake to Amazon EC2 host
Oh my mistake. I mean nrpe without parameters. It should say something
about SSL/TLS aktiv or so.
You could test nrpe without SSL. Use nrpe -n - H host
Am 01.05.2015 13:18 schrieb "Eero Volotinen" <eero.volotinen at iki.fi>:
> well. how about trying default setting and running nrped without xinetd.
>
> --
> Eero
>
> 2015-05-01 14:14 GMT+03:00 Tim Dunphy