letsencrypt instalação gratuita de SSL no servidor cpanel [fechado]

1

letsencrypt é uma nova autoridade de certificação gratuita

Agora que os problemas foram resolvidos, estou editando esta pergunta porque, se alguém também estiver enfrentando problemas semelhantes, verifique o plug-in oficial do cPanel em:

Ref: link

Que eu quero instalar no domínio do servidor do cPanel.

Eu segui para lá Como funciona

$ git clone https://github.com/letsencrypt/letsencrypt
$ cd letsencrypt
$ ./letsencrypt-auto --help

Mas não está funcionando

Meu log do console

root@host5 [~/letsencrypt]# ./letsencrypt-auto certonly --standalone -d softechdevelop.com -d www.softechdevelop.com
Bootstrapping dependencies for RedHat-based OSes...
yum is /usr/bin/yum
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
 * base: mirror.chpc.utah.edu
 * extras: mirror.tocici.com
 * updates: mirrors.usc.edu
Package python-2.6.6-64.el6.x86_64 already installed and latest version
Package python-devel-2.6.6-64.el6.x86_64 already installed and latest version
No package python-virtualenv available.
Nothing to do
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
 * base: mirror.chpc.utah.edu
 * extras: mirror.tocici.com
 * updates: mirrors.usc.edu
Package git-1.7.1-3.el6_4.1.x86_64 already installed and latest version
Package gcc-4.4.7-16.el6.x86_64 already installed and latest version
Package dialog-1.1-9.20080819.1.el6.x86_64 already installed and latest version
Package augeas-libs-1.0.0-10.el6.x86_64 already installed and latest version
Package openssl-devel-1.0.1e-42.el6.x86_64 already installed and latest version
Package libffi-devel-3.0.5-3.2.el6.x86_64 already installed and latest version
Package redhat-rpm-config-9.0.3-44.el6.centos.noarch already installed and latest version
Package ca-certificates-2015.2.4-65.0.1.el6_6.noarch already installed and latest version
Nothing to do
WARNING: Python 2.6 support is very experimental at present...
if you would like to work on improving it, please ensure you have backups
and then run this script again with the --debug flag!
root@host5 [~/letsencrypt]# ./letsencrypt-auto
Bootstrapping dependencies for RedHat-based OSes...
yum is /usr/bin/yum
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
 * base: mirror.chpc.utah.edu
 * extras: mirror.ancl.hawaii.edu
 * updates: mirrors.usc.edu
Package python-2.6.6-64.el6.x86_64 already installed and latest version
Package python-devel-2.6.6-64.el6.x86_64 already installed and latest version
No package python-virtualenv available.
Nothing to do
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
 * base: mirror.chpc.utah.edu
 * extras: mirror.tocici.com
 * updates: mirrors.usc.edu
Package git-1.7.1-3.el6_4.1.x86_64 already installed and latest version
Package gcc-4.4.7-16.el6.x86_64 already installed and latest version
Package dialog-1.1-9.20080819.1.el6.x86_64 already installed and latest version
Package augeas-libs-1.0.0-10.el6.x86_64 already installed and latest version
Package openssl-devel-1.0.1e-42.el6.x86_64 already installed and latest version
Package libffi-devel-3.0.5-3.2.el6.x86_64 already installed and latest version
Package redhat-rpm-config-9.0.3-44.el6.centos.noarch already installed and latest version
Package ca-certificates-2015.2.4-65.0.1.el6_6.noarch already installed and latest version
Nothing to do
WARNING: Python 2.6 support is very experimental at present...
if you would like to work on improving it, please ensure you have backups
and then run this script again with the --debug flag!

Se alguém tiver conhecimento da instalação SSL com o apache, sua sugestão será muito útil para mim e para todos os outros proprietários de sites do mundo inteiro.

    
por Shiv Singh 05.12.2015 / 07:24

1 resposta

1

Como você pode ver nos seus registros:

  • você está usando o python 2.6, o que eles acham que é desonesto o suficiente para rotulá-lo very experimental
  • você está perdendo o pacote python-virtualenv , possivelmente porque não está disponível para sua distribuição

Eu estou supondo que você está no RHEL6 / centos6 e então seus pacotes python 2.7 são nomeados python27* e o scripts não são inteligentes o suficiente para descobrir isso ainda.

    
por 05.12.2015 / 07:42