Ad Widget

Collapse

Agent for HP-UX 11.31

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sintona
    Junior Member
    • Apr 2016
    • 11

    #1

    Agent for HP-UX 11.31

    I am a new person here.
    Can anyone help me with the agent for HP Unix (HP-UX) 11.31 version? i am using Zabbix 3.0.
  • andris
    Zabbix developer
    • Feb 2012
    • 228

    #2
    Precompiled agents for HP-UX can be found at http://www.zabbix.com/download.php.
    Or you can compile it from source on HP-UX as described on https://www.zabbix.com/documentation...lation/install

    Comment

    • sintona
      Junior Member
      • Apr 2016
      • 11

      #3
      if you dont mind, can you please give installation step? normally we install .depot files in hp unix, how to install this tar file?

      Comment

      • andris
        Zabbix developer
        • Feb 2012
        • 228

        #4
        From my memory - there may be errors or omissions, it is not the only possible or the best way.

        From http://www.zabbix.com/download.php download a precompiled agent for HP-UX.

        1. Decide under which user you will run Zabbix agent.
        As running as 'root' is bad for security, let's run it under user 'zabbix'.
        Create account for user 'zabbix', set appropriate group membership.

        2. Decide in which directory you want to install it.
        For example, in /opt/zabbix_3.0.0.

        Create directory, set permissions, e.g.
        # mkdir /opt/zabbix_3.0.0
        # chown zabbix:zabbix /opt/zabbix_3.0.0
        # chmod u=rwx,go= /opt/zabbix_3.0.0

        3. Unpack tar file, e.g.
        # su - zabbix
        $ cd /opt/zabbix_3.0.0
        $ gunzip -c /path_to_archive/zabbix_agents_2.4.4.hpux11_31.ia64.tar.gz | tar xf -

        Now you have
        $ ls -lR
        .:
        total 12
        drwxr-xr-x 2 zabbix zabbix 4096 apr 20 10:49 bin
        drwxr-xr-x 3 zabbix zabbix 4096 apr 20 10:49 conf
        drwxr-xr-x 2 zabbix zabbix 4096 apr 20 10:49 sbin

        ./bin:
        total 740
        -rwxr-xr-x 1 zabbix zabbix 342728 mar 12 2015 zabbix_get <---- Zabbix command-line utility
        -rwxr-xr-x 1 zabbix zabbix 410276 mar 12 2015 zabbix_sender <---- Zabbix command-line utility

        ./conf:
        total 16
        -rw-r--r-- 1 zabbix zabbix 2537 mar 12 2015 zabbix_agent.conf
        drwxr-xr-x 2 zabbix zabbix 4096 apr 20 10:49 zabbix_agentd
        -rw-r--r-- 1 zabbix zabbix 7797 mar 12 2015 zabbix_agentd.conf <---- Edit this.

        ./conf/zabbix_agentd:
        total 8
        -rw-r--r-- 1 zabbix zabbix 1359 mar 12 2015 userparameter_examples.conf
        -rw-r--r-- 1 zabbix zabbix 1517 mar 12 2015 userparameter_mysql.conf

        ./sbin:
        total 1892
        -rwxr-xr-x 1 zabbix zabbix 897452 mar 12 2015 zabbix_agent
        -rwxr-xr-x 1 zabbix zabbix 1035836 mar 12 2015 zabbix_agentd <---- Zabbix agent executable.

        4. Edit agent configuration file /opt/zabbix_3.0.0/conf/zabbix_agentd.conf to suit your needs.
        In particular, pay attention to PidFile, LogFile, Server, ListenPort, ServerActive, Hostname parameters.

        5. Start agent, e.g.
        $ /opt/zabbix_3.0.0/sbin/zabbix_agentd -c /opt/zabbix_3.0.0/conf/zabbix_agentd.conf

        Now you get the idea, you can make your own .depot package.

        Comment

        • andris
          Zabbix developer
          • Feb 2012
          • 228

          #5
          You may also find useful this thread about agent on AIX

          Comment

          • 777-111
            Junior Member
            • Dec 2016
            • 1

            #6
            no more pre-compiled HP-UX 11.31 ia64 agents (only for deprecated PA-RISC CPU) on http://www.zabbix.com/download

            very sad

            Comment

            • andris
              Zabbix developer
              • Feb 2012
              • 228

              #7
              The problem is - no access to HP-UX 11.31 ia64 machine for compiling Zabbix agent.

              Comment

              • sintona
                Junior Member
                • Apr 2016
                • 11

                #8
                I can give HPUX Server for testing. we can have remote session for this.

                Comment

                Working...