Search found 858 matches

by dchurch
Thu Oct 28, 2021 10:53 am
Forum: Nagios XI
Topic: Uninstall Nagios XI
Replies: 5
Views: 758

If you're talking about de-allocating your license for that server, your Nagios account manager should be able to help you with that if you shoot them an email. I can get their contact information for you if you don't have it. If you're talking about uninstalling the Nagios XI web administration eng...
by dchurch
Wed Oct 06, 2021 3:32 pm
Forum: Nagios XI
Topic: /usr/local/nagios/var uses alot of space
Replies: 3
Views: 577

Re: /usr/local/nagios/var uses alot of space

You can delete /usr/local/nagios/var/archives/* without impacting anything. It's just a log archive (sourced from /usr/local/nagios/var/nagios.log). I'm not sure why Nagios XI does this, but logs get rotated into there and never get deleted. After an undetermined amount of time your hard drive will ...
by dchurch
Fri Oct 01, 2021 9:13 am
Forum: Nagios XI
Topic: ModGearman error
Replies: 3
Views: 559

Re: ModGearman error

Unfortunately Mod Gearman is a third-party product and CentOS 6 is no longer supported.

The double free corruption error is likely due to a bug in Mod Gearman (See changelog).

Perhaps you could try upgrading mod gearman on the machine.
by dchurch
Wed Sep 29, 2021 9:26 am
Forum: Nagios XI
Topic: ModGearman error
Replies: 3
Views: 559

Re: ModGearman error

Thanks for the helpful error logs! :)

Looks like the mod_gearman worker is crashing. What version of mod_gearman2 is running on the worker machine?

Please post the output from the following command:

Code: Select all

rpm -q mod_gearman2
by dchurch
Fri Sep 24, 2021 2:58 pm
Forum: Nagios XI
Topic: Fail Install SDK Prerequisites ESX SDK
Replies: 1
Views: 417

Re: Fail Install SDK Prerequisites ESX SDK

In the Install SDK Prerequisites section of the document, try replacing this line:

Code: Select all

cpanm Crypt::SSLeay --dev
with this line:

Code: Select all

yum install perl-Crypt-SSLeay -y
In my experience setting this up, the packaged version of Crypt::SSLeay is all right to use.
by dchurch
Thu Sep 23, 2021 3:50 pm
Forum: Nagios XI
Topic: "Expiration date" of Nagios Xi log messages?
Replies: 7
Views: 707

Re: "Expiration date" of Nagios Xi log messages?

The poll results are instead referred to as "check results" since they're run as regular checks. Other than the latest check, the storage mechanism is more a "bookkeeping" data that's controlled by "Max Service Checks Age" and "Max Commands Age" Are you experi...
by dchurch
Wed Sep 22, 2021 5:13 pm
Forum: Nagios XI
Topic: Amazon Linux 2
Replies: 1
Views: 337

Re: Amazon Linux 2

It can probably be made to run. Is it supported? No.

Currently supported distros are:

- RHEL 7/8
- CentOS 7/8
- Oracle Linux 7/8
- Debian 9/10
- Ubuntu 16/18/20 (LTS)

See Nagios XI System Requirements for a full list of supported distros.
by dchurch
Wed Sep 22, 2021 10:28 am
Forum: Nagios XI
Topic: "Expiration date" of Nagios Xi log messages?
Replies: 7
Views: 707

Re: "Expiration date" of Nagios Xi log messages?

/usr/local/nagios/var/nagios.log is the Nagios monitoring engine internal process's log. It's "rotated" away (i.e. truncated) when it gets to a certain size (5M). The SNMP trap retention logs are stored in the database. You can change the time SNMP logs are stored in the database by going ...
by dchurch
Fri Sep 03, 2021 4:50 pm
Forum: Nagios XI
Topic: Getting a random crash, some log files attached
Replies: 8
Views: 989

Re: Getting a random crash, some log files attached

I guess I was too quick to reply after receiving your profile.

Did you try my suggestion above? Did that fix your issue?
by dchurch
Fri Sep 03, 2021 9:27 am
Forum: Nagios XI
Topic: Getting a random crash, some log files attached
Replies: 8
Views: 989

Re: Getting a random crash, some log files attached

In `/etc/my.cnf.d/nagios.cnf`, create a file with the following lines: [mysqld] innodb_log_buffer_size = 32M innodb_buffer_pool_size = 1G innodb_log_file_size = 256M max_allowed_packet = 67108864 Then run the following commands as root: /usr/local/nagiosxi/scripts/manage_services.sh stop nagios /usr...