Operating System - Linux
1752866 Members
3600 Online
108791 Solutions
New Discussion юеВ

Re: cpqacuxe can not start

 
SOLVED
Go to solution
Rvb
New Member
Solution

Re: cpqacuxe can not start

Yayat,
modify /usr/sbin/cpqacuxe.sh script - set VER=`grep Tikanga $RHREL` without if ...fi .
All the best,
Sergey


Yayat
Frequent Advisor

Re: cpqacuxe can not start

Hi Rvb,

Please tell me which section need to remove.

# need to see if this is a RHEL5 box
RHREL="/etc/redhat-release"
if [ -z "$VER" ] && [ -f "$RHREL" ]
then
VER=`grep Tikanga $RHREL`
fi


Thank you very much.
Rvb
New Member

Re: cpqacuxe can not start

...
ACUXE_BIN_INSTALLATION_DIR=/opt/compaq/cpqacuxe/bld/
export ACUXE_BIN_INSTALLATION_DIR
LD_LIBRARY_PATH=$ACUXE_BIN_INSTALLATION_DIR
export LD_LIBRARY_PATH
IM_CFGFILE_PATH=$ACUXE_BIN_INSTALLATION_DIR
export IM_CFGFILE_PATH
ACUXE_LOCK_FILES_DIR=/opt/compaq/cpqacuxe/bld/locks/
export ACUXE_LOCK_FILES_DIR

#
# need to see if this is a RHEL5 box
RHREL="/etc/redhat-release"
VER=`grep Tikanga $RHREL`

ACUXE_PASS_FAILED=0
....
Yayat
Frequent Advisor

Re: cpqacuxe can not start

Hi Sergey,

I mean I want to know if my OS was 32/64 bit version. So I can download the right version of software for the OS. Thanks.
Yayat
Frequent Advisor

Re: cpqacuxe can not start

Ok I should use uname -a to determine my OS architecture. Sorry, newbie's fool.
habibalby
Frequent Advisor

Re: cpqacuxe can not start

Hello, could you pleas tell me how you have solve your problem?

I wanted to run the ACU to configure the MSA1000 while it's connected to the ESX Servers. When i run the cpqacuze with -R switch, i was able to install it but the Remote Management didn't start, due to

[root@nbbdevesx03 cpqacuxe]# cpqacuxe -R
Can not run because of HP System Management Homepage is not started or uninstalled.

Can anyone help?

Yayat
Frequent Advisor

Re: cpqacuxe can not start

Hi Habibalby,

First, ensure your snmp service is running for the HP SMH to work.
#service snmpd status
Verify that kernel, kernel-headers, and kernel-devel have the same version, eg:2.6.18-53.el5
#rpm -qa|grep kernel
Install HP SMH using HP LDU from smart start CD. Mount smart start CD ROM to eg:/mnt/cdrom/
#cd /mnt/cdrom/compaq/csp/linux
#./install.sh
Follow the wizard and wait till it finish.

Verify you have array controller driver isntalled.

#rpm -qa|grep cpq_cciss
it should show something like cpq_cciss-2.6.x.x

Verify the driver modul is loaded.

#lsmod
it should show cciss module listed there.

If not you should remove the cpq_cciss first.

#rpm -e --noscripts cpq_cciss
Verify that your redhat-release is supported OS.
#cat /etc/redhat-release
If your OS is Red Hat or CentOS it should be like "Red Hat Enterprise Linux Server bla bla"
In my case my OS is CentOS 5.1, so I have to edit /etc/redhat-release to be "Red Hat Enterprise Linux Server release 5.1 (Tikanga)". Centos is not supported OS but it is Red Hat Clone.
#vi /etc/redhat-release

Download the cpq_cciss package that support your running kernel. Dont forget to download the .txt file for that package so you can read what kernel are supported by that cpq_cciss version.
Install the cpq_cciss driver

#rpm -ivh cpq_cciss....
If you get no error then it should work.
Run the cpqacuxe that isntalled by HP LDU in earlier step.

#cpqacuxe

Login to your HP SMH, click ACU link in Storage Group.

Done, good luck

Yayat
Yayat
Frequent Advisor

Re: cpqacuxe can not start

It has been solved, thank you for all reply.