共计 1535 个字符,预计需要花费 4 分钟才能阅读完成。
装完 Apache,需要修改 apache 的配置文件:
nano /etc/httpd/conf/httpd.conf
配置文件中有
ScriptAlias /cgi-bin/ “/var/www/cgi-bin/” 这个指令,指示了默认的 cgi-bin 的路径。
/var/www/cgi-bin/,在配置文件中也可以看到。
还需要配置
AddHandler cgi-script .cgi .pl
该配置默认被注释掉了,设置了 cgi 的后缀名
编写一个 cgi 文件,内容如下:
#!/bin/bash
echo “Content-type: text/html”
echo “”
echo “Hello World”
注意,该文件必须是要 UNIX 文件格式的,可以 editpro 等工具编写。将该文件命名为 first.cgi, 然后放入 /var/www/cgi-bin/ 目录中。
然后运行 http://localhost:9000/cgi-bin/first.cgi,可以发现,有错误
有错误不可怕,默认的 httpd 的错误日志在 /var/log/httpd/error_log 里可以看到,也可以去 http 的软连接中访问 /etc/httpd/logs/error_log
打开 error_log 文件,可以看到如下的错误:
[Thu Jan 22 09:06:54 2015] [error] [client 192.168.6.2] (13)Permission denied: exec of ‘/var/www/cgi-bin/first.cgi’ failed
[Thu Jan 22 09:06:54 2015] [error] [client 192.168.6.2] Premature end of script headers: first.cgi
说明了权限被拒绝了。将 first.cgi 的权限设置成 755
chmod 755 /var/www/cgi-bin/first.cgi
再次运行 http://localhost:9000/cgi-bin/first.cgi,发现就正常显示了
同样的,可以编辑一个 perl 文件,也可以以 cgi 的方式运行
#!/usr/bin/perl
print “Content-type: text/html\n\n”;
print “Hello, World.”;
————————————- 我是分割线 ————————————-
Ubuntu 下 Apache 的 Rewrite 如何启用 http://www.linuxidc.com/Linux/2010-10/29027.htm
Ubuntu 14.04 中 Apache 2.2 升级到 2.4 后的几个要点 http://www.linuxidc.com/Linux/2015-01/111914.htm
Ubuntu 13.04 安装 LAMP\Vsftpd\Webmin\phpMyAdmin 服务及设置 http://www.linuxidc.com/Linux/2013-06/86250.htm
CentOS 5.9 下编译安装 LAMP(Apache 2.2.44+MySQL 5.6.10+PHP 5.4.12) http://www.linuxidc.com/Linux/2013-03/80333p3.htm
RedHat 5.4 下 Web 服务器架构之源码构建 LAMP 环境及应用 PHPWind http://www.linuxidc.com/Linux/2012-10/72484p2.htm
LAMP 源码环境搭建 WEB 服务器 Linux+Apache+MySQL+PHP http://www.linuxidc.com/Linux/2013-05/84882.htm