Need agent binary link for Solaris

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
ranjitw
Posts: 175
Joined: Tue Sep 01, 2015 1:52 am

Need agent binary link for Solaris

Post by ranjitw »

Hi ,

Please provide right binary for SunOS hsuntst01 5.8 Generic_117350-62 sun4u sparc SUNW,Sun-Fire-V490 .


While installation Nagios agent on solaris server I am getting following error :

Solaris test server OS version 8

root@hsuntst01:/tmp/Solaris_Agent/solaris-nrpe-agent # ./fullinstall
=================================
Nagios XI Solaris Agent Installer
=================================


This script will do a complete install of the Nagios XI
Solaris agent by executing all necessary sub-scripts.

IMPORTANT: This script should only be used on a Solaris
system. Do NOT use this on a system running
any other operating system.

Do you want to continue? [Y/n] y
Proceeding with installation...
This platform () is not currently supported.

Below is the OS details on which I need to install agent:

root@xxxxx:/tmp/Solaris_Agent/solaris-nrpe-agent # uname -a
SunOS hsuntst01 5.8 Generic_117350-62 sun4u sparc SUNW,Sun-Fire-V490
Regards,
Ranjit W
tmcdonald
Posts: 9117
Joined: Mon Sep 23, 2013 8:40 am

Re: Need agent binary link for Solaris

Post by tmcdonald »

While we do not provide binaries for most systems, we can try to get the agent to compile for you. Please bear in mind that the script performs the platform checks for a reason, and circumventing them is not recommended.

In the fullinstall script try removing the following lines near the beginning:

Code: Select all

# Check platform and architecture
case "$platform" in
        "sol10")
                case "$arch" in
                        i386|sparc)
                                : do nothing
                                ;;
                        *)
                                echo "This architecture ($arch) is not currently supported." >&2
                                exit 1
                esac
                ;;
        * )
                echo "This platform ($platform) is not currently supported." >&2
                exit 1
esac
Then try to run the fullinstall again. It seems like the script was not able to parse out your system architecture.
Former Nagios employee
ranjitw
Posts: 175
Joined: Tue Sep 01, 2015 1:52 am

Re: Need agent binary link for Solaris

Post by ranjitw »

We have modified the script as suggested and we are facing issues .

Could you please share the link for binary which supports solaris 8 ?
Regards,
Ranjit W
User avatar
hsmith
Agent Smith
Posts: 3539
Joined: Thu Jul 30, 2015 11:09 am
Location: 127.0.0.1
Contact:

Re: Need agent binary link for Solaris

Post by hsmith »

ranjitw wrote:We have modified the script as suggested and we are facing issues
Can you please elaborate on the issues you are facing?
ranjitw wrote:Could you please share the link for binary which supports solaris 8 ?
We do not provide binaries for most systems.
Former Nagios Employee.
me.
Locked