HP ProLiant G8: различия между версиями

Материал из Webko Wiki
Перейти к навигации Перейти к поиску
(Новая страница: «Категория:Hardware»)
 
Строка 1: Строка 1:
 
[[Категория:Hardware]]
 
[[Категория:Hardware]]
 +
 +
= Management Component Pack =
 +
The Linux Management Component Pack provides agent software for use on community-supported distributions.
 +
 +
'''hp-health''' HPE System Health Application and Command line Utilities (Gen9 and earlier) <br>
 +
'''hponcfg''' HPE RILOE II/iLO online configuration utility <br>
 +
'''amsd''' HPE Agentless Management Service (Gen10 only) <br>
 +
'''hp-ams''' HPE Agentless Management Service (Gen9 and earlier) <br>
 +
'''hp-snmp-agents''' Insight Management SNMP Agents for HPE ProLiant Systems (Gen9 and earlier) <br>
 +
'''hpsmh''' HPE System Management Homepage (Gen9 and earlier) <br>
 +
'''hp-smh-templates''' HPE System Management Homepage Templates (Gen9 and earlier) <br>
 +
'''ssacli''' HPE Command Line Smart Storage Administration Utility <br>
 +
'''ssaducli''' HPE Command Line Smart Storage Administration Diagnostics <br>
 +
'''ssa''' HPE Array Smart Storage Administration Service <br>
 +
== rpm install ==
 +
Cut-n-paste the following section (substituting distribution, architecture and project version) into ''/etc/yum.repos.d/mcp.repo'' on your system:
 +
<syntaxhighlight lang="Bash">
 +
[mcp]
 +
name=Management Component Pack
 +
baseurl=http://downloads.linux.hpe.com/repo/mcp/dist/dist_ver/arch/project_ver
 +
enabled=1
 +
gpgcheck=0
 +
gpgkey=file:///etc/pki/rpm-gpg/GPG-KEY-mcp
 +
</syntaxhighlight>
 +
Download GPG [http://downloads.linux.hpe.com/SDR/keys public]
 +
<syntaxhighlight lang="Bash">
 +
rpm --import http://downloads.linux.hpe.com/SDR/hpePublicKey2048_key1.pub
 +
</syntaxhighlight>
 +
Where: <br>
 +
'''dist''': centos, fedora, opensuse, oracle, asianux <br>
 +
'''dist_ver''': Browse repo to identify supported distribution versions <br>
 +
'''arch''': i386, x86_64 <br>
 +
'''project_ver''': current, 11.30, 11.21, 11.05, 10.62, 10.50, 10.40, 10.20, 10.00, 9.30, 9.25 <br>
 +
 +
List the packages in the repository
 +
<syntaxhighlight lang="Bash">
 +
$ yum --disablerepo="*" --enablerepo="short_repo_name" list available
 +
</syntaxhighlight>
 +
 +
Install a specific package
 +
<syntaxhighlight lang="Bash">
 +
$ yum install <packagename>
 +
</syntaxhighlight>
 +
=== CentOS 7 ===
 +
<syntaxhighlight lang="Bash">
 +
cat <<'EOF' >>/etc/yum.repos.d/mcp.repo
 +
[HP-mcp]
 +
name=HP Management Component Pack for ProLiant
 +
baseurl=http://downloads.linux.hpe.com/SDR/repo/mcp/centos/7.3/x86_64/current/
 +
enabled=1
 +
gpgcheck=0
 +
gpgkey=file:///etc/pki/rpm-gpg/GPG-KEY-mcp
 +
EOF
 +
</syntaxhighlight>
 +
<syntaxhighlight lang="Bash">
 +
wget http://downloads.linux.hpe.com/SDR/repo/mcp/GPG-KEY-mcp -O /etc/pki/rpm-gpg/GPG-KEY-mcp
 +
</syntaxhighlight>
 +
== deb install ==
 +
Cut-n-paste the following section (substituting distribution, architecture and project version) into /etc/apt/sources.list.d/mcp.list on your system:
 +
<syntaxhighlight lang="Bash">
 +
# HPE Management Component Pack
 +
deb http://downloads.linux.hpe.com/SDR/repo/mcp dist/project_ver non-free
 +
</syntaxhighlight>
 +
 +
Where:
 +
'''dist''': bionic, xenial, trusty, precise, stretch, jessie, squeeze, wheezy
 +
'''project_ver''': current, 11.30, 11.21, 11.05, 10.80, 10.60, 10.50, 10.40, 9.50, 9.40
 +
       
 +
 +
Install the HPE [http://downloads.linux.hpe.com/SDR/keys public] gpg key
 +
<syntaxhighlight lang="Bash">
 +
curl http://downloads.linux.hpe.com/SDR/hpePublicKey2048_key1.pub | apt-key add -
 +
</syntaxhighlight>
 +
 +
Update the local apt indexes
 +
<syntaxhighlight lang="Bash">
 +
# apt-get update
 +
</syntaxhighlight>
 +
 +
Search for a specific package
 +
<syntaxhighlight lang="Bash">
 +
# apt-cache search <packagename> # browse debs
 +
</syntaxhighlight>
 +
 +
Install a specific package
 +
<syntaxhighlight lang="Bash">
 +
# apt-get install <packagename>
 +
</syntaxhighlight>
 +
=== Debian 9 ===

Версия 11:29, 9 июля 2019


Management Component Pack

The Linux Management Component Pack provides agent software for use on community-supported distributions.

hp-health HPE System Health Application and Command line Utilities (Gen9 and earlier)
hponcfg HPE RILOE II/iLO online configuration utility
amsd HPE Agentless Management Service (Gen10 only)
hp-ams HPE Agentless Management Service (Gen9 and earlier)
hp-snmp-agents Insight Management SNMP Agents for HPE ProLiant Systems (Gen9 and earlier)
hpsmh HPE System Management Homepage (Gen9 and earlier)
hp-smh-templates HPE System Management Homepage Templates (Gen9 and earlier)
ssacli HPE Command Line Smart Storage Administration Utility
ssaducli HPE Command Line Smart Storage Administration Diagnostics
ssa HPE Array Smart Storage Administration Service

rpm install

Cut-n-paste the following section (substituting distribution, architecture and project version) into /etc/yum.repos.d/mcp.repo on your system:

[mcp]
name=Management Component Pack
baseurl=http://downloads.linux.hpe.com/repo/mcp/dist/dist_ver/arch/project_ver
enabled=1
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/GPG-KEY-mcp

Download GPG public

rpm --import http://downloads.linux.hpe.com/SDR/hpePublicKey2048_key1.pub

Where:
dist: centos, fedora, opensuse, oracle, asianux
dist_ver: Browse repo to identify supported distribution versions
arch: i386, x86_64
project_ver: current, 11.30, 11.21, 11.05, 10.62, 10.50, 10.40, 10.20, 10.00, 9.30, 9.25

List the packages in the repository

$ yum --disablerepo="*" --enablerepo="short_repo_name" list available

Install a specific package

$ yum install <packagename>

CentOS 7

cat <<'EOF' >>/etc/yum.repos.d/mcp.repo
[HP-mcp]
name=HP Management Component Pack for ProLiant
baseurl=http://downloads.linux.hpe.com/SDR/repo/mcp/centos/7.3/x86_64/current/
enabled=1
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/GPG-KEY-mcp
EOF
wget http://downloads.linux.hpe.com/SDR/repo/mcp/GPG-KEY-mcp -O /etc/pki/rpm-gpg/GPG-KEY-mcp

deb install

Cut-n-paste the following section (substituting distribution, architecture and project version) into /etc/apt/sources.list.d/mcp.list on your system:

# HPE Management Component Pack
deb http://downloads.linux.hpe.com/SDR/repo/mcp dist/project_ver non-free

Where: dist: bionic, xenial, trusty, precise, stretch, jessie, squeeze, wheezy project_ver: current, 11.30, 11.21, 11.05, 10.80, 10.60, 10.50, 10.40, 9.50, 9.40


Install the HPE public gpg key

 curl http://downloads.linux.hpe.com/SDR/hpePublicKey2048_key1.pub | apt-key add -

Update the local apt indexes

# apt-get update

Search for a specific package

# apt-cache search <packagename> # browse debs

Install a specific package

# apt-get install <packagename>

Debian 9