TranslateProject/translated/tech/20151208 How to renew the ISPConfig 3 SSL Certificate.md

59 lines
2.2 KiB
Markdown
Raw Normal View History

2015-12-12 16:57:29 +08:00
如何更新ISPConfig 3 SSL证书
2015-12-08 16:38:20 +08:00
================================================================================
2015-12-12 16:57:29 +08:00
本教程描述了如何再ISPConfig 3控制面板中更新SSL证书。有两个可选的方法
2015-12-08 16:38:20 +08:00
2015-12-12 16:57:29 +08:00
- 用OpenSSL创建一个新的OpenSSL证书和CSR。
- 用ISPConfig updater更新SSL证书
2015-12-08 16:38:20 +08:00
2015-12-12 16:57:29 +08:00
我将会用手工的方法更新ssl证书。
2015-12-08 16:38:20 +08:00
2015-12-12 16:57:29 +08:00
### 1用OpenSSL创建一个新的ISPConfig 3 SSL 证书 ###
2015-12-08 16:38:20 +08:00
2015-12-12 16:57:29 +08:00
用root用户登录你的服务器。在创建一个新的SSL证书之前备份现有的。SSL证书是安全敏感的因此我将它存储在/root/目录下。
2015-12-08 16:38:20 +08:00
tar pcfz /root/ispconfig_ssl_backup.tar.gz /usr/local/ispconfig/interface/ssl
chmod 600 /root/ispconfig_ssl_backup.tar.gz
2015-12-12 16:57:29 +08:00
> 现在创建一个新的SSL证书密钥证书请求csr和自签发证书。
2015-12-08 16:38:20 +08:00
cd /usr/local/ispconfig/interface/ssl
openssl genrsa -des3 -out ispserver.key 4096
openssl req -new -key ispserver.key -out ispserver.csr
openssl x509 -req -days 3650 -in ispserver.csr \
-signkey ispserver.key -out ispserver.crt
openssl rsa -in ispserver.key -out ispserver.key.insecure
mv ispserver.key ispserver.key.secure
mv ispserver.key.insecure ispserver.key
2015-12-12 16:57:29 +08:00
重启apache来加载新的SSL证书
2015-12-08 16:38:20 +08:00
service apache2 restart
2015-12-12 16:57:29 +08:00
### 2用ISPConfig安装器来更新SSL证书 ###
2015-12-08 16:38:20 +08:00
2015-12-12 16:57:29 +08:00
另一个获取新的SSL证书的替代方案是使用ISPConfig更新脚本。下载ISPConfig到/tmp目录下解压包并运行脚本。
2015-12-08 16:38:20 +08:00
cd /tmp
wget http://www.ispconfig.org/downloads/ISPConfig-3-stable.tar.gz
tar xvfz ISPConfig-3-stable.tar.gz
cd ispconfig3_install/install
php -q update.php
2015-12-12 16:57:29 +08:00
更新脚本会在更新时询问下面的额问题:
2015-12-08 16:38:20 +08:00
Create new ISPConfig SSL certificate (yes,no) [no]:
2015-12-12 16:57:29 +08:00
这里回答“yes”SSL证书创建对话框就会启动。
2015-12-08 16:38:20 +08:00
--------------------------------------------------------------------------------
via: http://www.faqforge.com/linux/how-to-renew-the-ispconfig-3-ssl-certificate/
作者:[Till][a]
2015-12-12 16:57:29 +08:00
译者:[geekpi](https://github.com/geekpi)
2015-12-08 16:38:20 +08:00
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
2015-12-12 16:45:13 +08:00
[a]:http://www.faqforge.com/author/till/