Linux系統下自建CA實現https訪問

2021-08-02 16:26:31 字數 426 閱讀 7331

1.安裝apache2

用於充當伺服器的角色

需要在配置檔案apache2.conf最後加入下面兩句:

servername localhost

directoryindex index.html index.htm index.php

其中:

servername localhost是為了防止最後開啟apache2服務的時候會提示dns出錯。

directoryindex index.html index.htm index.php是預設目錄的寫法。

具體安裝步驟見:

2.openssl安裝

一般linux系統自帶

3.自建ca機構

後續更新

部署自建CA頒發證書實現https加密

需求 自建證書並實現網域名稱的https加密 部署 在linux機器上執行以下命令生成私鑰 mkdir p opt ssl cert cd opt ssl cert 1.openssl genrsa outserver.key2048 在linux機器上執行以下命令生成csr檔案 2.openssl...

linux下自行實現的簡單shell程式

學過exec系列函式後,我嘗試自行實現乙個shell程式,先上 include include include include include include include include define num 32 using namespace std int main for pid t i...

如何實現Linux文字模式下自動掛載光碟機

如何實現linux文字模式下自動掛載光碟機 mount是用來掛載檔案系統的,可以在啟動的時候掛載也可以在啟動後掛載。在啟動後掛載可以使用mount命令實現,要實現啟動時自動掛載裝置則需啟動autofs服務就提供這種功能。該功能就像windows中的光碟機自動開啟功能,能夠及時掛載動態載入的檔案系統。...