如何在CentOS配置Apache的HTTPS服務

2021-03-28 20:08:17 字數 2284 閱讀 6528

1樓:育知同創教育

在centos配置

apache的https服務方法:

1)先按裝mod_ssl

yum install mod_ssl

完畢後在

/etc/httpd/conf.d/下會有一個ssl.conf的檔案,開啟

主要是看下證書及金鑰的位置

sslcertificatefile /etc/pki/tls/certs/localhost.crt

sslcertificatekeyfile /etc/pki/tls/private/localhost.key

(2)生成金鑰,

進入/etc/pki/tls/private,

刪除原來的localhost.key

rm -f localhost.key

生成新的localhost.key:

openssl genrsa 1024 > localhost.key

返回到certs目錄

cd ../certs

刪除原來的證書

rm -rf localhost.crt

生成新的

openssl req -new -x509 -days 365 -key ../private/localhost.key -out

localhost.crt

填寫需要填寫的資訊,證書就生成了

這裡為什麼要用localhost.crt這樣的名子,是因為在ssl.conf就是這樣子指定的,這兩個地方要一樣。

重啟apache,配置結束

現在就可以通過https訪問**

可能需要開發埠443號:iptables -i input -p tcp --dport 443 -j accept

2樓:匿名使用者

(1)先按裝mod_ssl

yum install mod_ssl

完畢後在

/etc/httpd/conf.d/下會有一個ssl.conf的檔案,開啟

主要是看下證書及金鑰的位置

sslcertificatefile /etc/pki/tls/certs/localhost.crt

sslcertificatekeyfile /etc/pki/tls/private/localhost.key

(2)生成金鑰,

進入/etc/pki/tls/private,

刪除原來的localhost.key

rm -f localhost.key

生成新的localhost.key:

openssl genrsa 1024 > localhost.key

返回到certs目錄

cd ../certs

刪除原來的證書

rm -rf localhost.crt

生成新的

openssl req -new -x509 -days 365 -key ../private/localhost.key -out

localhost.crt

填寫需要填寫的資訊,證書就生成了

這裡為什麼要用localhost.crt這樣的名子,是因為在ssl.conf就是這樣子指定的,這兩個地方要一樣。

重啟apache,配置結束

現在就可以通過https訪問**

可能需要開發埠443號:iptables -i input -p tcp --dport 443 -j accept

如何解決apache配置https問題

3樓:匿名使用者

如果去掉了#無法訪問,很明確:httpd-ssl.conf檔案配置錯誤了,看下是否明確web或證書目錄是否正確,實在不會配置可以**gw***獲取技術支援。

apache安裝ssl證書

注意:安裝防火牆需要設定允許443埠或關閉防火牆,如果本地伺服器安裝安全狗的,請允許443埠

apache怎麼使用https傳輸

apache怎麼把域名弄成https

4樓:匿名使用者

apache環境安裝證書,抄首先之前有ssl證書,**gw***可以獲取一個。

apache安裝ssl證書:

***/ssl/106.htmlapache自動跳轉到 https:https:

//****gw***.***/ssl/130.

html

centos下,如何配置yum源?

1 獲取並安裝zabbix的yum源。2 生成yum源快照,這樣可以直接用tab鍵來補全安裝。yum makecache 3 檢視檔案 root localhost yum search zabbix loaded plugins fastestmirror,langpacks loading mi...

如何在centos 7 x中安裝

各位好,這篇教程關於的是如何在centos 7中安裝odoo 就是我們所知的openerp 你是不是在考慮為你的業務安裝一個不錯的erp 企業資源規劃 軟體?那麼openerp就是你尋找的最好的程式,因為它是一款為你的商務提供傑出特性的自由開源軟體。openerp是一款自由開源的傳統的openerp...

如何在CentOS 6上通過YUM安裝Nginx和PHP F

安裝nginx yum install nginx 安裝php fpm yum enablerepo remi install php php fpm 如何在centos 6上通過yum安裝nginx和php fpm 第一步,在 etc yum.repos.d 目錄下建立一個專源配屬置檔案nginx...