Como instalo o repositório do HP CentOS?

3

Eu tenho procurado a resposta, mas não consegui encontrar instruções que funcionem para mim.

Eu quero instalar o repositório do HP CentOS para o meu novo Servidor ML310e Gen8 para que eu possa configurar o software de gerenciamento de insight, etc. para ele.

Obrigado

    
por dgibbs 11.02.2014 / 17:02

1 resposta

6

Você está procurando pelo HP Software Delivery Repository (HP-SDR) . O processo para instalá-lo está bem documentado aqui .

Eu faço isso via Puppet, mas executá-lo manualmente também não é grande coisa:

Há o HP Management Component Pack (MCP) e o HP Support Pack para ProLiant (SPP). O CentOS tecnicamente deveria usar o MCP, enquanto a Red Hat deveria usar o SPP. Eu só uso o HP SPP para tudo.

No seu caso, faça o download do script add_repo.sh . O script é bobagem porque requer que o pacote redhat-lsb seja instalado. No final, seu comando será parecido com:

# sh add_repo.sh -d RedHat spp

Uma vez feito isso, você pode instalar os agentes da HP através do yum. Para o seu servidor, eu recomendaria algo como: yum install hp-snmp-agents hpssa hp-health hp-smh-templates hpsmh hpssacli hponcfg e talvez yum install kmod-hpahcisr caso você tenha um controlador Dynamic Smart Array.

Uso total do comando:

[root@mdmarra ~]# sh add_repo.sh 

  Usage: add_repo.sh <RepoName>

    eg: where <RepoName> might be "spp" (Support Pack for Proliant)
        or any directory found in http://downloads.linux.hp.com/SDR/repo

    Normally the distribution, version, architecture and other information
    is auto-detected.  You made override these attributes with the following:

         [ -a <Architecture> ]     override to specified Linux architecture
         [ -d <Distribution> ]     override to specified Linux distribution
         [ -r <Release> ]          override to specified Linux release

         [ -R <Revision> ]         override to specified product revison

         [ -o <OutputDirectory> ]  override default output directory
         [ -s <APTConfigFile> ]    override default APT configuration file
         [ -y <YUMConfigFile> ]    override default YUM configuration file
         [ -z <ZYPPConfigFile> ]   override default ZYPP configuration file

         [ -m <TransportMethod> ]  override default transport protocol
                                   (ftp or http)
         [ -w <WaystationHost> ]   override default waystation host
         [ -u <URLPrefix> ]        override default URL prefix
    
por 11.02.2014 / 17:28