HP Systems Insight Manager On CentOS

Discussion in 'HOWTO-Related Questions' started by octopus, Dec 24, 2007.

  1. octopus

    octopus New Member

    littel question.

    I have done this How To only i get one error every time.

    [root@localhost ~]# export _POSIX2_VERSION=199209
    [root@localhost ~]# chmod +x HPSIM-Linux-C.05.01.00.00.bin
    [root@localhost ~]# ./HPSIM-Linux-C.05.01.00.00.bin
    Verifying archive integrity...OK
    Uncompressing Hewlett-Packard Development Company, L.P. HP Systems Insight Manager C.05.01.00.00........................
    There is another version of postgresql installed on this system.
    You will need to remove this version of postgresql before attempting to install HP Systems Insight Manager.
    The program returned an error code (2)
    [root@localhost ~]#


    this is the How To script

    1. Install CentOS 5.0
    2. Download HP SIM:
    http://h18004.www1.hp.com/products/servers/management/hpsim/dl_linux.html

    3. Installing the software
    (The following section can be copied into a shell script):

    # First do a upgrade of the system
    yum update -y

    # reboot if needed

    # We need to trick the HP software so it thinks Redhat Enterprise is installed
    nano /etc/redhat-release
    # Remove what it says and insert: Red Hat Enterprise Linux ES release 5

    # Install dependencies
    yum install compat-readline43 openssl097a compat-libstdc++-33 -y

    # We need to change the posix default version
    export _POSIX2_VERSION=199209

    # And now we run the downloaded HP SIM Package
    chmod +x HPSIM-Linux-C.05.01.00.00.bin
    ./HPSIM-Linux-C.05.01.00.00.bin

    # Configuring the HP SIM for the system
    /opt/mx/bin/mxinitconfig -l
    /opt/mx/bin/mxinitconfig -a

    # and done

    You should now be able to login to the HP SIM via a web browser at http://$IP:280/
    Log in with user root and the user's password.

    This HOWTO will not cover HP SIM Setup as it is very well documentet by HP here:

    http://docs.hp.com/en/5991-4498/


    I think there is done update white postgresql but when doesnt use the yum update get the same error
     
    Last edited: Dec 24, 2007
  2. octopus

    octopus New Member


    sorry found the fix

    sudo /usr/bin/yum remove postgresql*
     

Share This Page