Hi guys,
We have redhat oracle clustered environment and manage it through LUCI via web interface http://servername:8084. After the install of the nrpe agent, we not longer can access the web page. For not I have uninstalled the agent.
I believe there's a port(8084) conflict but not sure what area of nagios is using it. Any ideas?
Cluster Management(Luci) stopped working
Re: Cluster Management(Luci) stopped working
NRPE uses port 5666 by default, so unless it was configured specifically to use 8084 there is no reason there should be a conflict.
Former Nagios employee
Re: Cluster Management(Luci) stopped working
Default setting were used to install the agent on this machine and all our other systems. The only input during the install was the ip of the nagios server. I did a search in the install.log(attached) file for port 8084 and nothing was found. I will re-install and see what happens, but in the mean time... any other ideas/suggestion?
You do not have the required permissions to view the files attached to this post.
Re: Cluster Management(Luci) stopped working
To see what is the port that you are currently using and to make sure that you have entered the correct IP of the Nagios XI server, open the "/etc/xinetd.d/nrpe" file in a text editor.
If you make any changes to this file, you will need to restart xinetd so that changes can take effect:
Test the connectivity from the Nagios XI server:
Code: Select all
vi /etc/xinetd.d/nrpeCode: Select all
service xinetd restartCode: Select all
nmap <client ip> -p <your port>
/usr/local/nagios/libexec/check_nrpe -H <client ip> -p <your port>Be sure to check out our Knowledgebase for helpful articles and solutions!
Re: Cluster Management(Luci) stopped working
Could you check your iptable settings (as root):
Code: Select all
iptables -LRe: Cluster Management(Luci) stopped working
Ok guys, I checked the firewall and all looks fine. Nagios doesn't have any issue once installed, but it was causing us to not access the luci web console.
What I did was uninstall with the following commands
groupdel nagcmd
userdel nagios
rm -f /etc/xinet.d/nrpe
service xinetd restart
rm -rf /usr/local/nagios
rm -rf /tmp/linux-nrpe-agent
stopped the luci service
service luci stop
reinstalled the nagios agent and verified communicate with the nagios server
I then started the luci service and was able to access both apps and we are back in business!
Thanks for all the help.
What I did was uninstall with the following commands
groupdel nagcmd
userdel nagios
rm -f /etc/xinet.d/nrpe
service xinetd restart
rm -rf /usr/local/nagios
rm -rf /tmp/linux-nrpe-agent
stopped the luci service
service luci stop
reinstalled the nagios agent and verified communicate with the nagios server
I then started the luci service and was able to access both apps and we are back in business!
Thanks for all the help.
Re: Cluster Management(Luci) stopped working
Good to hear!
I'll be closing this thread now, but feel free to open another if you need anything in the future!
I'll be closing this thread now, but feel free to open another if you need anything in the future!
Former Nagios employee