亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

Linux下用Nginx作Perl程序服務(wù)器及其中Perl模塊的配置

 更新時(shí)間:2016年02月01日 10:06:25   投稿:goldensun  
這篇文章主要介紹了Linux下用Nginx作Perl程序服務(wù)器及其中Perl模塊的配置,文中使用到了FastCGI中間件進(jìn)行連接,需要的朋友可以參考下

perl + fastcgi + nginx搭建

nginx + fastcgi是php下最流行的一套環(huán)境了,那perl會(huì)不會(huì)也有fastcgi呢,當(dāng)然有,今天來(lái)搭建下nginx下perl的fastcgi.性能方面也不亞于php,但是現(xiàn)在web程序php的流行程度perl無(wú)法比擬了,性能再好也枉然,但是部分小功能可以考慮使用perl的fastcgi來(lái)搞定.進(jìn)入正題.
1. 準(zhǔn)備軟件環(huán)境:

nginx:http://www.nginx.org
perl:系統(tǒng)自帶
fastcgi:http://www.cpan.org/modules/by-module/FCGI/
1.1 nginx安裝
這里就不再詳細(xì)介紹了~
1.2 perl安裝
一般linux都有自帶perl,可以不用安裝,如果確實(shí)沒(méi)有,請(qǐng)執(zhí)行:

# yum install perl

1.3 perl-fastcgi安裝

# cd /usr/local/src
# wget http://www.cpan.org/modules/by-module/FCGI/FCGI-0.74.tar.gz
# tar -xzvf FCGI-0.74.tar.gz
# cd FCGI-0.74
# perl Makefile.PL 
# make
# make install

2. nginx虛擬主機(jī)配置

server {
 
  listen  80;
  server_name test.jb51.net;
  #access_log /data/logs/nginx/test.jb51.net.access.log main;
 
  index index.html index.php index.html;
  root /data/site/test.jb51.net;
 
  location / 
  {
 
  }
 
  location ~ \.pl$ 
  {
   include fastcgi_params;
   fastcgi_pass 127.0.0.1:8999;
   #fastcgi_pass unix:/var/run/jb51.net.perl.sock;
   fastcgi_index index.pl;
  }
}

如果想把tcp/ip方式改為socket方式,可以修改fastcgi-wrapper.pl.

$socket = FCGI::OpenSocket( "127.0.0.1:8999", 10 ); #use IP sockets

改為

$socket = FCGI::OpenSocket( "/var/run/jb51.net.perl.sock", 10 ); #use IP sockets

3. 配置腳本

3.1 fastcgi監(jiān)聽(tīng)腳本
文件路徑:/usr/bin/fastcgi-wrapper.pl

#!/usr/bin/perl
 
use FCGI;
use Socket;
use POSIX qw(setsid);
 
require 'syscall.ph';
 
&daemonize;
 
#this keeps the program alive or something after exec'ing perl scripts
END() { } BEGIN() { }
*CORE::GLOBAL::exit = sub { die "fakeexit\nrc=".shift()."\n"; };
eval q{exit};
if ($@) {
 exit unless $@ =~ /^fakeexit/;
};
 
&main;
 
sub daemonize() {
 chdir '/'     or die "Can't chdir to /: $!";
 defined(my $pid = fork) or die "Can't fork: $!";
 exit if $pid;
 setsid     or die "Can't start a new session: $!";
 umask 0;
}
 
sub main {
  $socket = FCGI::OpenSocket( "127.0.0.1:8999", 10 ); #use IP sockets
  $request = FCGI::Request( \*STDIN, \*STDOUT, \*STDERR, \%req_params, $socket );
  if ($request) { request_loop()};
   FCGI::CloseSocket( $socket );
}
 
sub request_loop {
  while( $request->Accept() >= 0 ) {
 
   #processing any STDIN input from WebServer (for CGI-POST actions)
   $stdin_passthrough ='';
   $req_len = 0 + $req_params{'CONTENT_LENGTH'};
   if (($req_params{'REQUEST_METHOD'} eq 'POST') && ($req_len != 0) ){
    my $bytes_read = 0;
    while ($bytes_read < $req_len) {
      my $data = '';
      my $bytes = read(STDIN, $data, ($req_len - $bytes_read));
      last if ($bytes == 0 || !defined($bytes));
      $stdin_passthrough .= $data;
      $bytes_read += $bytes;
    }
   }
 
   #running the cgi app
   if ( (-x $req_params{SCRIPT_FILENAME}) && #can I execute this?
     (-s $req_params{SCRIPT_FILENAME}) && #Is this file empty?
     (-r $req_params{SCRIPT_FILENAME})  #can I read this file?
   ){
  pipe(CHILD_RD, PARENT_WR);
  my $pid = open(KID_TO_READ, "-|");
  unless(defined($pid)) {
   print("Content-type: text/plain\r\n\r\n");
      print "Error: CGI app returned no output - ";
      print "Executing $req_params{SCRIPT_FILENAME} failed !\n";
   next;
  }
  if ($pid > 0) {
   close(CHILD_RD);
   print PARENT_WR $stdin_passthrough;
   close(PARENT_WR);
 
   while(my $s = <KID_TO_READ>) { print $s; }
   close KID_TO_READ;
   waitpid($pid, 0);
  } else {
     foreach $key ( keys %req_params){
      $ENV{$key} = $req_params{$key};
     }
     # cd to the script's local directory
     if ($req_params{SCRIPT_FILENAME} =~ /^(.*)\/[^\/]+$/) {
       chdir $1;
     }
 
   close(PARENT_WR);
   close(STDIN);
   #fcntl(CHILD_RD, F_DUPFD, 0);
   syscall(&SYS_dup2, fileno(CHILD_RD), 0);
   #open(STDIN, "<&CHILD_RD");
   exec($req_params{SCRIPT_FILENAME});
   die("exec failed");
  }
   }
   else {
    print("Content-type: text/plain\r\n\r\n");
    print "Error: No such CGI app - $req_params{SCRIPT_FILENAME} may not ";
    print "exist or is not executable by this process.\n";
   }
 
  }
}

3.2 fastcgi自啟動(dòng)服務(wù)腳本:

文件路徑:/etc/rc.d/init.d/perl-fastcgi

文件路徑:/etc/rc.d/init.d/perl-fastcgi
 

#!/bin/sh
#
# nginx – this script starts and stops the nginx daemon
#
# chkconfig: - 85 15
# description: Nginx is an HTTP(S) server, HTTP(S) reverse \
# proxy and IMAP/POP3 proxy server
# processname: nginx
# config: /opt/nginx/conf/nginx.conf
# pidfile: /opt/nginx/logs/nginx.pid
 
# Source function library.
. /etc/rc.d/init.d/functions
 
# Source networking configuration.
. /etc/sysconfig/network
 
# Check that networking is up.
[ "$NETWORKING" = "no" ] && exit 0
 
perlfastcgi="/usr/bin/fastcgi-wrapper.pl"
prog=$(basename perl)
 
lockfile=/var/lock/subsys/perl-fastcgi
 
start() {
 [ -x $perlfastcgi ] || exit 5
 echo -n $"Starting $prog: "
 daemon $perlfastcgi
 retval=$?
 echo
 [ $retval -eq 0 ] && touch $lockfile
 return $retval
}
 
stop() {
 echo -n $"Stopping $prog: "
 killproc $prog -QUIT
 retval=$?
 echo
 [ $retval -eq 0 ] && rm -f $lockfile
 return $retval
}
 
restart() {
 stop
 start
}
 
reload() {
 echo -n $”Reloading $prog: ”
 killproc $nginx -HUP
 RETVAL=$?
 echo
}
 
force_reload() {
 restart
}
rh_status() {
 status $prog
}
 
rh_status_q() {
 rh_status >/dev/null 2>&1
}
 
case "$1" in
 start)
  rh_status_q && exit 0
  $1
  ;;
 stop)
  rh_status_q || exit 0
  $1
  ;;
 restart)
  $1
  ;;
 reload)
  rh_status_q || exit 7
  $1
  ;;
 force-reload)
  force_reload
  ;;
 status)
  rh_status
  ;;
 condrestart|try-restart)
  rh_status_q || exit 0
  ;;
 *)
  echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}"
  exit 2
 esac

3.3 設(shè)置腳本權(quán)限

# chmod a+x /usr/bin/fastcgi-wrapper.pl
# chmod a+x /etc/rc.d/init.d/perl-fastcgi


4. FastCGI測(cè)試
4.1 啟動(dòng)nginx與fastcgi

# /usr/local/nginx-1.4.2/sbin/nginx
# /etc/init.d/perl-fastcgi start

4.2 perl測(cè)試文件:
文件路徑/data/site/test.jb51.net/test.pl

#!/usr/bin/perl
 
print "Content-type:text/html\n\n";
print <<EndOfHTML;
<html><head><title>Perl Environment Variables</title></head>
<body>
<h1>Perl Environment Variables</h1>
EndOfHTML
 
foreach $key (sort(keys %ENV)) {
 print "$key = $ENV{$key}<br>\n";
}
 
print "</body></html>";

5. 訪問(wèn)測(cè)試

5.1 訪問(wèn)
http://http:test.jb51.net/test.pl,出現(xiàn)內(nèi)容表示OK.
 
6. 簡(jiǎn)單壓力測(cè)試:
6.1 使用tcp/ip方式

ab -n 1000 -c 10 http://test.jb51.net/test.pl

他是在是太慢了,只好用10個(gè)并發(fā),共計(jì)100個(gè)請(qǐng)求來(lái)測(cè)試.

201621100220855.jpg (616×191)

6.2 使用socket方式:

ab -n 100000 -c 500 http://test.jb51.net/test.pl

201621100303553.jpg (616×227)

很奇怪,使用tcp/ip方式,每秒就140多個(gè)請(qǐng)求,而使用socket方式卻有5800個(gè)請(qǐng)求/秒。差距不是一般的大。順便測(cè)試了一下php的fastcgi,大概請(qǐng)求在3000(tcp/ip方式),4800(socket方式)。

perl模塊的使用
如果對(duì)于一個(gè)絕大部分內(nèi)容是靜態(tài)的網(wǎng)站,只有極少數(shù)的地方需要?jiǎng)討B(tài)顯示,碰巧你又了解一點(diǎn)perl知識(shí),那么nginx + perl的結(jié)合就能很好解決問(wèn)題。要想nginx支持perl腳本,在編譯nginx時(shí)候需要如下參數(shù):

./configure --with-http_perl_module

如果make時(shí)候出現(xiàn)如下類(lèi)似錯(cuò)誤:

Can't locate ExtUtils/Embed.pm in @INC (@INC contains: /usr/lib/perl5/5.10.0/i386-linux-thread-multi /usr/lib/perl5/5.10.0 /usr/local/lib/perl5/site_perl/5.10.0/i386-linux-thread-multi /usr/local/lib/perl5/site_perl/5.10.0 /usr/lib/perl5/vendor_perl/5.10.0/i386-linux-thread-multi /usr/lib/perl5/vendor_perl/5.10.0 /usr/lib/perl5/vendor_perl /usr/local/lib/perl5/site_perl .)

你的機(jī)器上可能需要安裝perl-devel perl-ExtUtils-Embed,對(duì)于centos系統(tǒng),直接使用yum搞定,例如:

yum -y install perl-devel perl-ExtUtils-Embed

nginx中使用perl有兩種方法,一種是直接在配置文件寫(xiě),還有一種是把perl腳本寫(xiě)在外部文件中,下面主要介紹一下第二種用法。
假設(shè)nginx的根目錄為/usr/local/nginx,perl腳本存放的目錄為nginx的根目錄下的perl/lib下,腳本名字為test.pm,nginx配置為:

#位于http配置中
 perl_modules perl/lib;
 perl_require test.pm;
 
#位于server配置中
 location /user/ {
 perl pkg_name::process;
 }

上述配置是把所有來(lái)自http://servername/user/下的請(qǐng)求交由test.pm腳本中定義的process方法來(lái)處理。
test.pm腳本的內(nèi)容如下:

package pkg_name;
 
use Time::Local;
use nginx;
 
sub process {
 my $r = shift;
 
 $r-&gt;send_http_header('text/html; charset=utf-8');
 my @arr = split('/', $r-&gt;uri);
 my $username = @arr[2];
 
 if (!$username || ($username eq "")) {
 $username = "Anonymous";
 }
 
 $r-&gt;print('Hello, You name is : <strong>' . $username . '</strong>');
 $r-&gt;rflush();
 return;
}
 
1;
__END__

當(dāng)你訪問(wèn)http://servername/user/netingcn,你應(yīng)該可以在網(wǎng)頁(yè)上看到:

Hello, You name is : netingcn

另外:當(dāng)使用 use nginx 時(shí),會(huì)有如下的對(duì)象可以調(diào)用,可以看到上面 shift 一個(gè)對(duì)象到 $r 上,然后就可以用 $r 調(diào)用那些對(duì)象了:

  • $r->args – 請(qǐng)求的參數(shù) .
  • $r->discard_request_body – 這個(gè)參數(shù)是讓 Nginx 放棄 request 的 body 的內(nèi)容.
  • $r->filename – 返回合適的請(qǐng)求文件的名字
  • $r->has_request_body(function) – 如果沒(méi)有請(qǐng)求主體,返回0,但是如果請(qǐng)求主體存在,那么建立傳遞的函數(shù)并返回1,在程序的最后,nginx將調(diào)用指定的處理器.
  • $r->header_in(header) – 查找請(qǐng)求頭的信息
  • $r->header_only – 如果我們只要返回一個(gè)響應(yīng)的頭
  • $r->header_out(header, value) – 設(shè)置響應(yīng)的頭
  • $r->internal_redirect(uri) – 使內(nèi)部重定向到指定的URI,重定向僅在完成perl腳本后發(fā)生.可以使用 header_out(Location….的方法來(lái)讓瀏覽器自己重定向
  • $r->print(args, …) – 發(fā)送數(shù)據(jù)給客戶端
  • $r->request_body – 得到客戶端提交過(guò)來(lái)的內(nèi)容 (body 的參數(shù),可能需要修改 nginx 的 client_body_buffer_size. )
  • $r->request_body_file —給客戶的 body 存成文件,并返回文件名
  • $r->request_method — 得到請(qǐng)求 HTTP method.
  • $r->remote_addr – 得到客戶端的 IP 地址.
  • $r->rflush – 立即傳送數(shù)據(jù)給客戶端
  • $r->sendfile(file [, displacement [, length ] ) – 傳送給客戶端指定文件的內(nèi)容,可選的參數(shù)表明只傳送數(shù)據(jù)的偏移量與長(zhǎng)度,精確的傳遞僅在perl腳本執(zhí)行完畢后生效.這可是所謂的高級(jí)功能啊
  • $r->send_http_header(type) – 添加一個(gè)回應(yīng)的 http 頭的信息
  • $r->sleep(milliseconds, handler) – 設(shè)置為請(qǐng)求在指定的時(shí)間使用指定的處理方法和停止處理,在此期間nginx將繼續(xù)處理其他的請(qǐng)求,超過(guò)指定的時(shí)間后,nginx將運(yùn)行安裝的處理方法,注意你需要為處理方法通過(guò)一個(gè)reference,在處理器間轉(zhuǎn)發(fā)數(shù)據(jù)你可以使用$r->variable().
  • $r->status(code) – 設(shè)置 http 的響應(yīng)碼
  • $r->unescape(text) – 使用 http 方法加密內(nèi)容如 %XX
  • $r->uri – 得到請(qǐng)求的 URL.
  • $r->variable(name[, value]) – 設(shè)置變量的值

相關(guān)文章

  • ubuntu上配置Nginx+PHP5 FastCGI服務(wù)器配置

    ubuntu上配置Nginx+PHP5 FastCGI服務(wù)器配置

    ubuntu上配置Nginx+PHP5 FastCGI服務(wù)器配置方法, 需要的朋友可以參考下。
    2010-06-06
  • 詳解通過(guò)Nginx部署Django(基于ubuntu)

    詳解通過(guò)Nginx部署Django(基于ubuntu)

    這篇文章主要介紹了詳解通過(guò)Nginx部署Django(基于ubuntu),Django的部署可以有很多方式,采用nginx+uwsgi的方式是其中比較常見(jiàn)的一種方式,有興趣的可以了解一下。
    2017-01-01
  • nginx配置ssl證書(shū)實(shí)現(xiàn)https訪問(wèn)的示例

    nginx配置ssl證書(shū)實(shí)現(xiàn)https訪問(wèn)的示例

    這篇文章主要介紹了nginx配置ssl證書(shū)實(shí)現(xiàn)https訪問(wèn)的示例,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2018-03-03
  • 為Nginx啟用Brotli壓縮算法的方法示例

    為Nginx啟用Brotli壓縮算法的方法示例

    這篇文章主要介紹了為Nginx啟用Brotli壓縮算法的方法示例,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2018-12-12
  • 在Nginx中配置image filter模塊來(lái)實(shí)現(xiàn)動(dòng)態(tài)生成縮略圖

    在Nginx中配置image filter模塊來(lái)實(shí)現(xiàn)動(dòng)態(tài)生成縮略圖

    這篇文章主要介紹了在Nginx中配置image filter模塊來(lái)實(shí)現(xiàn)動(dòng)態(tài)生成縮略圖的方法,包括縮略圖尺寸的設(shè)置等方面的介紹,需要的朋友可以參考下
    2015-12-12
  • nginx設(shè)置資源請(qǐng)求目錄的方式詳解

    nginx設(shè)置資源請(qǐng)求目錄的方式詳解

    最近有一個(gè)需求.就是url指定路徑下訪問(wèn)服務(wù)器的靜態(tài)資源,這篇文章主要給大家介紹了關(guān)于nginx設(shè)置資源請(qǐng)求目錄的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2022-05-05
  • Nginx開(kāi)啟Gzip壓縮大幅提高頁(yè)面加載速度的方法

    Nginx開(kāi)啟Gzip壓縮大幅提高頁(yè)面加載速度的方法

    這篇文章主要介紹了Nginx開(kāi)啟Gzip壓縮大幅提高頁(yè)面加載速度的方法,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2018-08-08
  • Ubuntu下搭建與配置Nginx服務(wù)

    Ubuntu下搭建與配置Nginx服務(wù)

    這篇文章介紹了Ubuntu下搭建與配置Nginx服務(wù)的方法,對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2022-06-06
  • Linux下給nginx安裝waf模塊

    Linux下給nginx安裝waf模塊

    ngx_lua_waf是一個(gè)基于ngx_lua的web應(yīng)用防火墻。代碼很簡(jiǎn)單,開(kāi)發(fā)初衷主要是使用簡(jiǎn)單,高性能和輕量級(jí)。下面我們來(lái)看看如何在為nginx安裝waf模塊
    2016-08-08
  • nginx反向代理https內(nèi)部定向到http報(bào)302的問(wèn)題及解決

    nginx反向代理https內(nèi)部定向到http報(bào)302的問(wèn)題及解決

    這篇文章主要介紹了nginx反向代理https內(nèi)部定向到http報(bào)302的問(wèn)題及解決,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-12-12

最新評(píng)論