Domanda :Salve, stavo provando a riscrivere i certificati su CentOS 7 usando c_rehash
. Tuttavia, viene visualizzato l'errore comando c_rehash non trovato .
$ c_rehash $HOME/.certs/ -bash: c_rehash: command not found
Pensavo che il comando dovesse essere installato come parte dei pacchetti di sviluppo OpenSSL e OpenSSL, ma non è così.
Non sono riuscito a installare c_rehash
anche tramite YUM.
# 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.
Potete aiutarmi a risolvere questo problema? – Sam.
Soluzione:installa lo script C_rehash
Sam, c_rehash
script è disponibile come parte del pacchetto OpenSSL Perl. Quindi installando openssl-perl
dovrebbe risolvere il 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
Questo è tutto!