LAMP建站步骤
host ssl.ca-0.1]# ls ca* 查看一下是否存在 ca.crt ca.key -------------------------------------- 下面还要为服务器生成一个证书,也就是要部署到apache的证书: [root@localhost ssl.ca-0.1]# ./new-server-cert.sh server (这个证书的名字是server,当然 ,你也可以随便写)
stateOrProvinceName :PRINTABLE:''China'' localityName :PRINTABLE:''ShanDong'' organizationName :PRINTABLE:''sye.com'' organizationalUnitName:PRINTABLE:''sye'' commonName :PRINTABLE:''NO2'' emailAddress :IA5STRING:''sye@mail.com'' Certificate is to be certified until March 29 16:57:31 2011 GMT (365 days) Sign the certificate? [y/n]:y 1 out of 1 certificate requests certified, commit? [y/n]y Write out database with 1 new entries Data Base Updated CA verifying: server.crt <-> CA cert server.crt: OK =============================== 下面修改一下 apache 的配置 ]# vi /etc/httpd.conf 修改前: # Secure (SSL/TLS) connections # Include /etc/extra/httpd-ssl.conf 去掉 # 修改后: # Secure (SSL/TLS) connections Include /etc/extra/httpd-ssl.conf 保存 退出 可以说 apache httpd-2.2.8 真的很方便, 只需要去掉那一行注释就可以使用 ssl 了 但是在编译安装时候一定要 加入 -enable-ssl ---------------------------- 把 server.crt server.key 拷贝到 /etc 目录下 [root@localhost ssl.ca-0.1]# cp server.crt /etc/server.crt [root@localhost ssl.ca-0.1]# cp server.key /etc/server.key 关闭 apache [root@localhost ssl.ca-0.1]# /usr/local/apache2/bin/apachectl stop & 再启动 apache [root@localhost ssl.ca-0.1]# /usr/local/apache2/bin/apachectl start & ]# netstat -tnl |
|
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |