溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用python如何實現(xiàn)CGI環(huán)境搭建

發(fā)布時間:2020-07-29 14:42:26 來源:億速云 閱讀:184 作者:小豬 欄目:開發(fā)技術(shù)

小編這次要給大家分享的是使用python如何實現(xiàn)CGI環(huán)境搭建,文章內(nèi)容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。

本文web服務器使用的為apache。

1. 安裝apache

yum install -y httpd

2. 配置apache

修改apache配置文件/etc/httpd/conf/httpd.conf將下面一行的注釋去掉,如果沒有則添加:
LoadModule cgid_module modules/mod_cgid.so

cgi腳本文件的默認路徑為/var/www/cgi-bin/

修改如下幾處內(nèi)容:

<Directory />
AllowOverride none
Require all denied
</Directory>

為:

<Directory "/var/www/cgi-bin">
AllowOverride None
Options +ExecCGI
Order allow,deny
Allow from all
</Directory>

去掉注釋并添加.py

AddHandler cgi-script .cgi .py

3.重啟apache

第一、啟動、終止、重啟

systemctl start httpd.service #啟動

systemctl stop httpd.service #停止

systemctl restart httpd.service #重啟

第二、設(shè)置開機啟動/關(guān)閉

systemctl enable httpd.service #開機啟動

systemctl disable httpd.service #開機不啟動

4.檢查httpd狀態(tài)

systemctl status httpd.service

● httpd.service - The Apache HTTP Server
  Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
  Active: active (running) since 四 2018-12-27 10:05:27 CST; 6min ago
   Docs: man:httpd(8)
      man:apachectl(8)
 Main PID: 4943 (httpd)
  Status: "Total requests: 0; Current requests/sec: 0; Current traffic:  0 B/sec"
  CGroup: /system.slice/httpd.service
      ├─4943 /usr/sbin/httpd -DFOREGROUND
      ├─4946 /usr/libexec/nss_pcache 131074 off
      ├─4947 /usr/sbin/httpd -DFOREGROUND
      ├─4948 /usr/sbin/httpd -DFOREGROUND
      ├─4950 /usr/sbin/httpd -DFOREGROUND
      ├─4951 /usr/sbin/httpd -DFOREGROUND
      ├─4952 /usr/sbin/httpd -DFOREGROUND
      └─4955 /usr/sbin/httpd -DFOREGROUND

12月 27 10:05:26 master systemd[1]: Starting The Apache HTTP Server...
12月 27 10:05:26 master httpd[4943]: AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 192.168.1.200. Set the ...is message
12月 27 10:05:27 master systemd[1]: Started The Apache HTTP Server.
Hint: Some lines were ellipsized, use -l to show in full.

5編寫代碼

#!/usr/bin/python
#coding=utf-8

print "Content-type:text/html"
print              #空行,告訴服務器結(jié)束頭部
print '<html>'
print '<head>'
print '<meta charset="utf-8">'
print '<title>Hello Word - 我的第一個CGI程序!</title>'
print '</head>'
print '<body>'
print '<h3>嘿! 你最帥了 ~</h3>'
print '</body>'
print '</html>'

6前臺測試

使用python如何實現(xiàn)CGI環(huán)境搭建

OK 可以。

但是有一個問題,這是引用的python2

看完這篇關(guān)于使用python如何實現(xiàn)CGI環(huán)境搭建的文章,如果覺得文章內(nèi)容寫得不錯的話,可以把它分享出去給更多人看到。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI