您现在的位置是:网站首页> 编程资料编程资料
CentOS7自生成证书配置SSL WEB详解_RedHat/Centos_操作系统_
2023-03-23
773人已围观
简介 CentOS7自生成证书配置SSL WEB详解_RedHat/Centos_操作系统_
# 安装Apache [root@server0 ~]# yum -y install httpd mod_ssl # 添加防火墙规则 [root@server0 ~]# firewall-cmd --permanent --add-server=80/tcp [root@server0 ~]# firewall-cmd --permanent --add-server=443/tcp [root@server0 ~]# firewall-cmd --permanent --add-server=8080/tcp;firewall-cmd --reload [root@server0 ~]# systemctl restart httpd;systemctl enable httpd
# 配置selinux安全上下文 [root@server0 ~]# semanaga port -a -t http_port_t {80,443,8080} [root@server0 ssl]# mkdir /etc/httpd/ssl;cd /etc/httpd/ssl # 生成KEY
[root@server0 ssl]# openssl genrsa -des3 -out vqiu.cn.key 2048
# 去密码
[root@server0 ssl]# openssl rsa -in vqiu.cn.key -out vqiu.cn.key# 生成证书签发请求和证书密钥
[root@server0 ssl]# openssl req -new -nodes -key vqiu.cn.key -out vqiu.cn.csr
# 通过csr生成一个证书,以 vqiu.cn 为例
[root@server0 ssl]# openssl x509 -req -days 3650 -in vqiu.cn.csr -signkey vqiu.cn.key -out vqiu.cn.crt
#生成 crt 之后,csr 可以进行删除[可略过]
[root@server0 ssl]# rm vqiu.cn.csr -f
[root@server0 ssl]# cat /etc/httpd/conf.d/vqiu.cn.conf
Listen 443 https
ServerName server0.vqiu.cn
DocumentRoot /var/www/html
SSLEngine on
SSLProtocol all -SSLv2
SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5
SSLCertificateFile /etc/httpd/ssl/vqiu.cn.crt
SSLCertificateKeyFile /etc/httpd/ssl/vqiu.cn.key
# 生成一个测试页面
[root@server0 ssl]# echo "test">/var/www/html/index.html
# 重启httpd服务
[root@server0 ssl]# systemctl restart httpd
相关内容
- 扩展虚拟内存的方法教程_RedHat/Centos_操作系统_
- CentOS下双网卡主备模式配置详解_RedHat/Centos_操作系统_
- CentOS配置SSH单向无密码访问的方法_RedHat/Centos_操作系统_
- centos6.6下如何安装GreenPlum4.3.5.2?_RedHat/Centos_操作系统_
- CentOS如何使用命令设置代理?_RedHat/Centos_操作系统_
- RHEL7.0怎么配置网络IP?RHEL7.0 配置网络IP的三种方法介绍_RedHat/Centos_操作系统_
- CentOS 文件通配符讲解_RedHat/Centos_操作系统_
- CentOS单网卡如何批量添加不同IP段?_RedHat/Centos_操作系统_
- CentOS 7.1如何添加删除用户?CentOS 7.1添加删除用户的方法_RedHat/Centos_操作系统_
- yum和apt-get的区别详解_RedHat/Centos_操作系统_
