We have our red Hat satellite server and all other servers are getting patched with these satellite servers on regular basis. But today when i tried to install hpacucli i am getting the following message:
root@lxe1129 [~] # yum install hpacucli
Loaded plugins: product-id, rhnplugin, security, subscription-manager
This system is receiving updates from RHN Classic or RHN Satellite.
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package hpacucli.x86_64 0:9.40-12.0 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
hpacucli x86_64 9.40-12.0 prod-hp-sys-tools 6.5 M
Transaction Summary
================================================================================
Install 1 Package(s)
Total download size: 6.5 M
Installed size: 0
Is this ok [y/N]: y
Downloading Packages:
hpacucli-9.40-12.0.x86_64.rpm | 6.5 MB 00:00
warning: rpmts_HdrFromFdno: Header V3 DSA/SHA1 Signature, key ID 2689b887: NOKEY
Public key for hpacucli-9.40-12.0.x86_64.rpm is not installed
root@lxe1129 [~] # yum install hpacucli
Loaded plugins: product-id, rhnplugin, security, subscription-manager
This system is receiving updates from RHN Classic or RHN Satellite.
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package hpacucli.x86_64 0:9.40-12.0 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
hpacucli x86_64 9.40-12.0 prod-hp-sys-tools 6.5 M
Transaction Summary
================================================================================
Install 1 Package(s)
Total download size: 6.5 M
Installed size: 0
Is this ok [y/N]: y
Downloading Packages:
hpacucli-9.40-12.0.x86_64.rpm | 6.5 MB 00:00
warning: rpmts_HdrFromFdno: Header V3 DSA/SHA1 Signature, key ID 2689b887: NOKEY
Public key for hpacucli-9.40-12.0.x86_64.rpm is not installed
And after that when i checked with rpm -qa | grep hpacucli, it is not showing any output.
Resolution:
For installing these software from HP we need to download the rpm package from HP site. And then do rpm -ivh.
We have downloaded the following packages:
hpacucli-9.20-9.0.x86_64.rpm
hp-ams-1.2.0-781.36.rhel5.x86_64.rpm
hp-health-9.20-1528.19.rhel5.x86_64.rpm
hp-snmp-agents-9.20-2350.17.rhel5.x86_64.rpm
and made the following script to install them:
for PKG in `ls *.rpm`
do
rpm -ivh $PKG
done
# Disable HP ASR
hpasmcli -s "disable asr"
For installing these software from HP we need to download the rpm package from HP site. And then do rpm -ivh.
We have downloaded the following packages:
hpacucli-9.20-9.0.x86_64.rpm
hp-ams-1.2.0-781.36.rhel5.x86_64.rpm
hp-health-9.20-1528.19.rhel5.x86_64.rpm
hp-snmp-agents-9.20-2350.17.rhel5.x86_64.rpm
and made the following script to install them:
for PKG in `ls *.rpm`
do
rpm -ivh $PKG
done
# Disable HP ASR
hpasmcli -s "disable asr"
No comments:
Post a Comment