Installation of Check mk agent at Ubuntu
-
I want to install the check mk agent at Ubuntu.I have the .tar.gz file and it was extracted properly and now it is being tried to install by the procedure given in the following website
https://mathias-kettner.de/checkmk_manual_install.html.I have verified the above page for the installation and the installation not came as such after following the same steps present in the .I have attached the screenshot of that also,please verify that
-
Maybe the how to is out of date?
-
@scottalanmiller I cant understand
-
@Lakshmana
I have installed the check mk agent now but there is an issue at xinetd.xinetd is not even running after restarting the services.why? -
Please verify the screenshot.
-
Try running this...
sudo apt-get -y install -f
That should resolve any missing dependencies.
-
@thanksajdotcom
No improvement in installation of the dependencies -
@Lakshmana said:
@scottalanmiller I cant understand
You are following directions. Perhaps those directions are not current.
-
@Lakshmana said:
@Lakshmana
I have installed the check mk agent now but there is an issue at xinetd.xinetd is not even running after restarting the services.why?Did you set up xinetd?
-
@scottalanmiller No I have not installed xinetd separately but it automatically installed while installing the check mk agent.
-
@Lakshmana said:
@scottalanmiller No I have not installed xinetd separately but it automatically installed while installing the check mk agent.
It did? So it is installed twice now? It should be there in a base install.
-
@scottalanmiller said:
@Lakshmana said:
@scottalanmiller No I have not installed xinetd separately but it automatically installed while installing the check mk agent.
It did? So it is installed twice now? It should be there in a base install.
It's possible he's using the wrong service name. The package may be named one thing and the service name another.
-
@Lakshmana, what is the result if you run the following?
/usr/sbin/xinetd status
When I run the same command you ran, I get this:
root@jump-server:~# service xinetd status xinetd start/running, process 1354
That means for me the service is running and recognized under that name. If I run htop, I get the following for that PID:
So maybe try this?
service xinetd start
I see you started to do that but never actually ran it. You tried to restart it but if it's not already running, that does you no good.
Thanks,
A.J. -
@thanksajdotcom I have tried the things you have mentioned please verify the screeenshot i have attached with this.
-
Can you do me a favor and run the following command?
sudo apt-get -y install xinetd
What do you get when you run that?
-
@handsofqwerty PLease verify this snapshot
-
@Lakshmana said:
@handsofqwerty PLease verify this snapshot
Ok, have you tried this?
sudo service xinetd start
It might need root privileges to start the service.
-
@handsofqwerty Yes now it is working properly and now the service is started and I have joined this machine in nagios now.Thank you now it is working properly.
-
@Lakshmana said:
@handsofqwerty Yes now it is working properly and now the service is started and I have joined this machine in nagios now.Thank you now it is working properly.
Ok, it's usually something simple like that. I run in root mode all the time on all my Linux machines, so I constantly forget to tell people to use "sudo" because I never have to...
-
@handsofqwerty said:
@Lakshmana said:
@handsofqwerty Yes now it is working properly and now the service is started and I have joined this machine in nagios now.Thank you now it is working properly.
Ok, it's usually something simple like that. I run in root mode all the time on all my Linux machines, so I constantly forget to tell people to use "sudo" because I never have to...
One of the problems of coming from a "root" system like RHEL or CentOS and switching to a "sudo" system like Ubuntu. Need everything prefaced with sudo.