Jomann,
Feel free to close this thread.
Thanks for your help,
Daniel
Search found 13 matches
- Fri Jul 13, 2018 1:14 pm
- Forum: Nagios XI
- Topic: MySQL not Starting after Upgrade to 5.5.1
- Replies: 9
- Views: 600
- Fri Jul 13, 2018 1:12 pm
- Forum: Nagios XI
- Topic: MySQL not Starting after Upgrade to 5.5.1
- Replies: 9
- Views: 600
Re: MySQL not Starting after Upgrade to 5.5.1
Thanks Jomann,
I'll keep it out for now and let our server run for a while and see how it does.
I'll keep it out for now and let our server run for a while and see how it does.
- Fri Jul 13, 2018 12:54 pm
- Forum: Nagios XI
- Topic: MySQL not Starting after Upgrade to 5.5.1
- Replies: 9
- Views: 600
Re: MySQL not Starting after Upgrade to 5.5.1
Here is my version or mySQL Installed Packages Name : mysql Arch : x86_64 Version : 5.1.73 Release : 8.el6_8 Size : 2.4 M Repo : installed From repo : updates Summary : MySQL client programs and shared libraries URL : http://www.mysql.com License : GPLv2 with exceptions Description : MySQL is a mult...
- Fri Jul 13, 2018 12:26 pm
- Forum: Nagios XI
- Topic: MySQL not Starting after Upgrade to 5.5.1
- Replies: 9
- Views: 600
Re: MySQL not Starting after Upgrade to 5.5.1
This was my my.cnf file [mysqld] innodb_file_per_table=1 ignore-builtin-innodb default-storage-engine = myisam datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock user=mysql # Disabling symbolic-links is recommended to prevent assorted security risks symbolic-links=0 query-cache-size = 10M query...
- Fri Jul 13, 2018 12:04 pm
- Forum: Nagios XI
- Topic: MySQL not Starting after Upgrade to 5.5.1
- Replies: 9
- Views: 600
Re: MySQL not Starting after Upgrade to 5.5.1
Hello Jomann,
We are on Centos 6. I will give that a try and get back to you.
We are on Centos 6. I will give that a try and get back to you.
- Fri Jul 13, 2018 9:41 am
- Forum: Nagios XI
- Topic: MySQL not Starting after Upgrade to 5.5.1
- Replies: 9
- Views: 600
MySQL not Starting after Upgrade to 5.5.1
Hello, I upgraded to 5.5.1 from 5.4.13 and after the upgrade it said it failed and to try the upgrade manually when I rebooted the server mySQL fails to start now with the error unknown variable 'innodb_file_per_table=1. I am not sure how to proceed. I did take a snapshot of the VM pre upgrade so I ...
- Thu Jan 11, 2018 12:37 pm
- Forum: Nagios XI
- Topic: NRPE Not Returning Value
- Replies: 10
- Views: 745
Re: NRPE Not Returning Value
I believe I found the issue. I added the following the the script and I am now getting results back. ORACLE_BASE=/opt/oracle ORACLE_HOME=$ORACLE_BASE/product/11.2.0.4 export ORACLE_BASE ORACLE_HOME [root@monitor libexec]# ./check_nrpe -H svr-rhel7 -t 60 -p 5666 -4 -c test2 OK - Passwords are not set...
- Thu Jan 11, 2018 8:46 am
- Forum: Nagios XI
- Topic: NRPE Not Returning Value
- Replies: 10
- Views: 745
Re: NRPE Not Returning Value
I forgot to add test.txt is owned by nrpe and I change the permissions to 777.
Thanks,
Daniel
Thanks,
Daniel
- Thu Jan 11, 2018 8:37 am
- Forum: Nagios XI
- Topic: NRPE Not Returning Value
- Replies: 10
- Views: 745
Re: NRPE Not Returning Value
I stripped down the script to be the following. Taking the SQL command out just for testing purposes. #!/bin/bash # Nagios return codes UNKNOWN=3 CRIT=2 WARN=1 OK=0 OUTTEST=`cat test.txt` export OUTTEST if test "$OUTTEST" -gt 30; then echo "OK - Passwords are not set to expire for ano...
- Wed Jan 10, 2018 4:26 pm
- Forum: Nagios XI
- Topic: NRPE Not Returning Value
- Replies: 10
- Views: 745
Re: NRPE Not Returning Value
If I su to the nagios user locally the script runs normally. [nagios@ats-db-04 plugins]$ ./test2 OK - Passwords are not set to expire for another 90 days As for the nrpe version on the rhel box I am using the standalone version I believe. It is the one that you can install from EPEL. yum list instal...