讓apache2以cgi方式運行perl cgi程式的實現方法_perl

來源:互聯網
上載者:User

1、linux系統一般內建perl
可運行程式在:/usr/bin/perl

2、perl測試程式

複製代碼 代碼如下:

#!/usr/bin/perl -w
use warnings;
print "Hello, Perl works!  ";

命名為test.pl

在終端下,定位到該目錄,輸入perl test.pl,perl正常工作的話,會顯示輸出
Hello, Perl works!

3、讓apache2以cgi方式支援perl
a. apache2安裝完成之後,
設定檔位於/etc/apache2目錄下,主要是apache2.conf。
但是修改的時候主要可以修改sites-available下面的default;
修改完成之後重啟apache2,需要輸入/etc/init.d/apache2之後添加參數stop, start, restart。

b. 修改apache2的設定檔使得其以cgi方式支援perl
修改sites-available下的default中的

複製代碼 代碼如下:

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

設定目錄/cgi-bin/對應的為/var/www/cgi-bin/
(即http://localhost/cgi-bin/目錄下為cgi指令碼)
同時修改AllowOverride, Options, Order, Allow等如上。
還可以添加
AddHandler cgi-script .cgi .pl

自訂支援的尾碼(預設情況下支援cgi和pl尾碼)

4、編寫cgi測試程式
cgi_test.pl

複製代碼 代碼如下:

#!/usr/bin/perl -w
use warnings;
use CGI qw(:standard);
#! must use 'my' to define a variable
print header;
my $now_string = localtime();
print "<b>Hello, CGI using Perl!</b><br/>It's $now_string NOW!<br />";

注意:
a. 需要將該cgi_test.pl程式copy到/var/www/cgi-bin/目錄下
b. 還需要修改程式cgi_test.pl的許可權,否則會出現如下類似錯誤:
(13)Permission denied: exec of '/var/www/cgi-bin/cgi.pl' failed
sudo chmod 755 cgi_test.pl

5、綜上,按照上面介紹的方法:
a. perl程式在Linux下運行正常。
b. apache2以cgi支援perl cgi程式
遇到錯誤可以查看,apache2的erro記錄檔,位於 /var/log/apache2/error.log 進一步查詢和排除錯誤。

c. 另一個方面,對於cgi的perl程式可以先寫好,在命令列下perl cgi_test.pl查看是否程式本身有錯。
如果沒有錯,就可以完全將問題定位成apache2對perl cgi程式的支援問題。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.