Page 1 of 1

Need agent binary link for Solaris

Posted: Mon Jan 18, 2016 6:34 am
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

Re: Need agent binary link for Solaris

Posted: Mon Jan 18, 2016 10:58 am
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.

Re: Need agent binary link for Solaris

Posted: Tue Jan 19, 2016 8:44 am
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 ?

Re: Need agent binary link for Solaris

Posted: Tue Jan 19, 2016 10:19 am
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.