服务器之家:专注于服务器技术及软件下载分享
分类导航

Linux|Centos|Ubuntu|系统进程|Fedora|注册表|Bios|Solaris|Windows7|Windows10|Windows11|windows server|

服务器之家 - 服务器系统 - Centos - Centos5.2配置LAMP与Centos5.3配置LAMP(58)

Centos5.2配置LAMP与Centos5.3配置LAMP(58)

2019-10-11 14:12Centos教程网 Centos

835 my @dbh_tables = eval { $dbh-tables() }; 836 map { s/^.*?\.//o } @dbh_tables; //加入此行 mysql 5.0.50后已经修正这个错误。 16、配置https vi /usr/local/apache2/conf/httpd.conf # 监听


835 my @dbh_tables = eval { $dbh->tables() }; 
836 map { s/^.*?\.//o } @dbh_tables; //加入此行 
mysql 5.0.50后已经修正这个错误。 

16、配置https 
vi /usr/local/apache2/conf/httpd.conf 
# 监听443端口,支持https连接 
取消注释 httpd.conf 中的 Include conf/extra/httpd-ssl.conf 
设置SSL并创建自己的CA 
# cd /etc/pki/tls/misc 
# ./CA -newca 
屏幕上出现如下的提示:CA certificate filename (or enter to create) 
这是要求输入要创建的CA的证书文件名, 可以直接回车或输入证书文件名。 
Making CA certificate ... 
Generating a 1024 bit RSA private key 
.........++++++ 
................................++++++ 
writing new private key to './demoCA/private/./cakey.pem' 
Enter PEM pass phrase: 
Verifying password - Enter PEM pass phrase:- 
此时要求输入和验证CA的私钥口令、国家代码(中国是CN)、省份、城市或地区、组织或企业名称、部门名称、CA的名称或服务器的主机名称、管理员电子邮件地址。 
至此,在当前目录下生成了demoCA的目录,CA的证书就在该目录下,文件名为cacert.pem 

延伸 · 阅读

精彩推荐