python-web apache mod_python 模組的安裝

來源:互聯網
上載者:User

標籤:

  1. 安裝apache
  2. 下載mod_python
  3. 編譯安裝
  4. 測試

 

下載mod_python,:mod_python 在GitHub 上面,

下載之後:目錄結構如下:

安裝依賴:

#尋找可安裝的依賴 yum search python | grep python-devel

  

# 安裝python依賴sudo yum install python-devel.x86_64

編譯安裝,執行下面命令:  

# 我的apache安裝路徑是 /usr/local/apache2sudo ./configure  --with-apxs=/usr/local/apache2/bin/apxs
sudo make
sudo make install

尋找安裝的結果:

cd /usr/local/apache2/bin/# 查看已經安裝的模組,如,則說明安裝成功./apachectl -M |grep python

配置 httpd.conf 檔案,如下(確保 /usr/local/apache2/modules/mod_python.so 檔案存在)

LoadModule python_module modules/mod_python.so

修改設定檔httpd.conf ,增加如下配置

AddHandler cgi-script .py

檢查配置是否有吳:

bin/apachectl -t

重啟apache:

bin/apachectl -k restart

測試: 在 /usr/local/apache2/cgi-bin 目錄下編寫hello.py 檔案,內容如下:

python 是指令碼語言,修改檔案不需要重啟apache

#!/usr/bin/env pythonprint "Content-Type: text/html"printprint """<html><body><h2>Hello World!</h2></body></html>"""

在瀏覽器訪問: http://127.0.0.1/cgi-bin/hello.py 如,則說明安裝成功

  

python-web apache mod_python 模組的安裝

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.