facebook twitter hatena line email

「Linux/perlインストール」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
行16: 行16:
 
==apache上でcgiを動かす==
 
==apache上でcgiを動かす==
 
$chmod 755 test.cgi
 
$chmod 755 test.cgi
 +
 +
-test.cgi
 
  #!/usr/bin/perl
 
  #!/usr/bin/perl
 
  print "Content-type: text/html\n\n";
 
  print "Content-type: text/html\n\n";
 
  print "Hello, World.";
 
  print "Hello, World.";

2016年1月31日 (日) 21:38時点における版

インストール

yum install perl
/usr/bin/perl -v

apacheでcgiを動かす

  • httpd.conf
#AddHandler cgi-script .cgi
 ↓
AddHandler cgi-script .cgi

オプションにExecCGIを追加する

<Directory "/var/www/html/cgi-bin">
  Options ExecCGI
</Directory>

apache上でcgiを動かす

$chmod 755 test.cgi

-test.cgi

#!/usr/bin/perl
print "Content-type: text/html\n\n";
print "Hello, World.";