Pregunta :Hola, estaba tratando de repetir los certificados en CentOS 7 usando c_rehash
. Sin embargo, veo el error comando c_rehash no encontrado .
$ c_rehash $HOME/.certs/ -bash: c_rehash: command not found
Pensé que el comando debería instalarse como parte de los paquetes de desarrollo de OpenSSL y OpenSSL, pero ese no es el caso.
No pude instalar c_rehash
a través de YUM también.
# yum install c_rehash Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirrors.piconets.webwerks.in * extras: mirrors.piconets.webwerks.in * updates: centos.mirror.snu.edu.in base | 3.6 kB 00:00 extras | 2.9 kB 00:00 updates | 2.9 kB 00:00 Not using downloaded updates/repomd.xml because it is older than what we have: Current : Thu Aug 5 15:41:14 2021 Downloaded: Tue Aug 3 16:10:37 2021 No package c_rehash available.
¿Puedes ayudarme a solucionar este problema? – Sam.
Solución:instalar el script C_rehash
Sam, c_rehash
script está disponible como parte del paquete OpenSSL Perl. Así que instalando openssl-perl
debería resolver el problema.
# yum install openssl-perl
o
# yum install /usr/bin/c_rehash Resolving Dependencies --> Running transaction check ---> Package openssl-perl.x86_64 1:1.0.2k-21.el7_9 will be installed --> Processing Dependency: perl(WWW::Curl::Easy) for package: 1:openssl-perl-1.0.2k-21.el7_9.x86_64 --> Running transaction check ---> Package perl-WWW-Curl.x86_64 0:4.15-13.el7 will be installed --> Finished Dependency Resolution
¡Eso es!