日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

apachectl startssl启动apache自动运行输入密码

發布時間:2025/7/14 41 豆豆
生活随笔 收集整理的這篇文章主要介紹了 apachectl startssl启动apache自动运行输入密码 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

apachectl startssl啟動apache自動運行輸入密碼

作者:不詳 來源: [url]http://www.chinaunix.net[/url](無顯示即不詳)
  • 核心提示:安裝了一臺服務器,只開放了https,沒有開放http 把啟動命令/usr/local/bin/apachectl startssl寫到/etc/rc.local里,重啟服務器。 發現apache并沒有自動運行。 手動運行 [root@localhost]# /usr/local/bin/apachectl restart httpd not running, trying to start Apach.....
安裝了一臺服務器,只開放了https,沒有開放http
把啟動命令/usr/local/bin/apachectl startssl寫到/etc/rc.local里,重啟服務器。
發現apache并沒有自動運行。
手動運行
[root@localhost]# /usr/local/bin/apachectl restart
httpd not running, trying to start
Apache/2.2.0 mod_ssl/2.2.0 (Pass Phrase Dialog)
Some of your private key files are encrypted for security reasons.
In order to read them you have to provide the pass phrases.

Server [url]www.example.com:443[/url] (RSA)
Enter pass phrase:

OK: Pass Phrase Dialog successful.
發現原來是要輸入pass phrase的原因

解決方案有2種
1:去掉/usr/local/bin/apachectl startssl啟動的pass phrase,用空pass phrase啟動apache
(while preserving the original file):
$ cp server.key server.key.org
$ openssl rsa -in server.key.org -out server.key

確認server.key 文件為root可讀
$ chmod 400 server.key
參考[url]http://www.chinaunix.net/jh/13/599604.html[/url]

2:編輯
vi /usr/local/apache2/conf/extra/httpd-ssl.conf
注釋SSLPassPhraseDialog??builtin
在后添加
SSLPassPhraseDialog exec:/usr/local/apache2/conf/apache_pass.sh

vi /usr/local/apache2/conf/apache_pass.sh
#!/bin/sh
echo "密碼"

chmod +x /usr/local/apache2/conf/apache_pass.sh

然后重啟apache
[root@localhost conf]# /home/apache2/bin/apachectl start
[root@localhost conf]#

然后從起服務器,就可以運行了

轉載于:https://blog.51cto.com/liujia/139587

《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀

總結

以上是生活随笔為你收集整理的apachectl startssl启动apache自动运行输入密码的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。