免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3742 | 回复: 6
打印 上一主题 下一主题

LAWP相关问题 [已解决] [复制链接]

论坛徽章:
1
金牛座
日期:2014-08-10 21:59:41
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-07-16 11:35 |只看该作者 |倒序浏览
本帖最后由 dav_ 于 2014-07-18 12:47 编辑

如题,小弟最近安装了ubuntu server套件的lawp套件(P为phpmyadmin),根据网络上的教程学习了一下,其中有几个困难点却因为英文不好而没有办法理解,想来这边请教一下大家。
第一个是Mysql的问题,我使用perl连接DBI时,网络上的教程为

  1. use DBI;
  2. my $dbh = DBI->connect( 'dbi:mysql:db',
  3.                         'usr',
  4.                         'usrpwd',
  5.                         {
  6.                           RaiseError => 1,
  7.                           AutoCommit => 0
  8.                         }
  9.                       )  || die "Database connection not made: $DBI::errstr";
复制代码
而我第一行必须要用像这样才能够连接:


  1. my $dbh = DBI->connect( 'dbi:mysql:mysql',

复制代码
想请问一下最后那个冒号后的意思是甚么?

另外一个问题是网络上根据教程,上面说的HTML程序代码为:
  1. <FORM METHOD="GET" ACTION="http://ind.ntou.edu.tw/cgi-bin/cgiwrap/~dada/exp1.pl">
  2. 姓名:<INPUT SIZE=10 NAME="name"><BR>
  3. 性别:<INPUT TYPE="radio" NAME="sex" VALUE="boy" CHECKED>男
  4. <INPUT TYPE="radio" NAME="sex" VALUE="girl">女<BR>
  5. <INPUT TYPE="submit" VALUE="送出资料">
  6. <INPUT TYPE="reset" VALUE="清除资料">
  7. </FORM>
复制代码
看起来应该是会执行http://ind.ntou.edu.tw/cgi-bin/cgiwrap/~dada/exp1.pl此段网址的程序,而我将那行改为<FORM METHOD="GET" ACTION="exp1.pl">
由HTML开启的却是程序代码而不是程序执行的结果,去网络找好像说要install mod_perl ,想请问这要怎么设定? 我的Apache 为2.0版本

论坛徽章:
1
金牛座
日期:2014-08-10 21:59:41
2 [报告]
发表于 2014-07-18 10:54 |只看该作者
本帖最后由 dav_ 于 2014-07-18 10:56 编辑

我是悲情原PO
以下是我的/etc/apache2/sites-avaible/000-default.conf檔

  1. <VirtualHost *:80>
  2.         # The ServerName directive sets the request scheme, hostname and port that
  3.         # the server uses to identify itself. This is used when creating
  4.         # redirection URLs. In the context of virtual hosts, the ServerName
  5.         # specifies what hostname must appear in the request's Host: header to
  6.         # match this virtual host. For the default virtual host (this file) this
  7.         # value is not decisive as it is used as a last resort host regardless.
  8.         # However, you must set it for any further virtual host explicitly.
  9.         #ServerName www.example.com

  10.         ServerAdmin webmaster@localhost
  11.         DocumentRoot /var/www/html
  12.         AddHandler cgi-script .cgi .pl
  13.         ScriptAlias /var/www/html/cgi-bin/ /cgi-bin/
  14.         <Directory "/var/www/html/cgi-bin">
  15.             AllowOverride None
  16.             Options +Indexes +ExecCGI +MultiViews +SymLinksIfOwnerMatch
  17.             #Order allow,deny
  18.             Require all granted
  19.             Allow from all
  20.         </Directory>

  21.         ErrorLog ${APACHE_LOG_DIR}/error.log
  22.         CustomLog ${APACHE_LOG_DIR}/access.log combined

  23.         # For most configuration files from conf-available/, which are
  24.         # enabled or disabled at a global level, it is possible to
  25.         # include a line for only one particular virtual host. For example the
  26.         # following line enables the CGI configuration for this host only
  27.         # after it has been globally disabled with "a2disconf".
  28.         #Include conf-available/serve-cgi-bin.conf
  29. </VirtualHost>
复制代码
我是用VirtualBox架设的,网络选择桥接适配卡,在外部用192.168.2.7能够正确显示/var/www/html/index.html档案
而将网址改为192.168.2.7/cgi-bin/exp1.pl 却显示500的错误
网络上查了一下,几个说法是说路径的权限没有开启,我检查却都正常,程序的权限也是可执行

  1. drwxr-xr-x  14 root root  4096 Jul 17 23:02 var/
  2. dav@dav:/var$ ll | grep www
  3. drwxr-xr-x  3 root root   4096 Jul 12 23:38 www/
  4. dav@dav:/var/www$ ll | grep html
  5. drwxr-xr-x  3 root root 4096 Jul 18 10:27 html/
  6. dav@dav:/var/www/html$ ll
  7. total 32
  8. drwxr-xr-x 3 root root  4096 Jul 18 10:27 ./
  9. drwxr-xr-x 3 root root  4096 Jul 12 23:38 ../
  10. -rw-r--r-- 1 root root 11510 Jul 15 15:53 backup_index.html
  11. drwxr-xr-x 2 root root  4096 Jul 18 10:14 cgi-bin/
  12. -r-xr-xr-x 1 root root  1478 Jul 15 16:11 exp1.pl*
  13. -rw-r--r-- 1 root root   382 Jul 18 10:27 index.html
  14. dav@dav:/var/www/html/cgi-bin$ ll
  15. total 12
  16. drwxr-xr-x 2 root root 4096 Jul 18 10:14 ./
  17. drwxr-xr-x 3 root root 4096 Jul 18 10:27 ../
  18. -r-xr-xr-x 1 root root 1472 Jul 18 10:14 exp1.pl*
复制代码
另一个说法是要到/etc/hosts加东西,但我实在看不懂要加甚么
这是我的/etc/hosts檔

  1. 127.0.0.1       localhost
  2. 127.0.1.1       dav.0.2.15      dav

  3. # The following lines are desirable for IPv6 capable hosts
  4. ::1     localhost ip6-localhost ip6-loopback
  5. ff02::1 ip6-allnodes
  6. ff02::2 ip6-allrouters
复制代码
无法进展.. 请各位知道的各位帮个忙
另外以下是我参考过的网站
http://perlmaven.com/perl-cgi-script-with-apache2
http://stackoverflow.com/questio ... un-perl-cgi-scripts
http://stackoverflow.com/questio ... tu-13-10-apache-2-4

论坛徽章:
0
3 [报告]
发表于 2014-07-18 11:12 |只看该作者
看你apache 的配置, CGI 的解析被限制在目录 "/var/www/html/cgi-bin" 下了,
所以你的 *.pl  *.cgi 文件需要放到该目录下才能工作的。
但是你现在exp1.pl 位于:"/var/www/html" 下, 于是不会按照预期的按照Perl handler来解析了

论坛徽章:
1
金牛座
日期:2014-08-10 21:59:41
4 [报告]
发表于 2014-07-18 12:02 |只看该作者
回复 3# climby


     我在两边都有放,而主机上面也各用了http://192.168.2.7/cgi-bin/exp1.pl 以及http://192.168.2.7/exp1.pl测试
     抱歉造成误会

     这是分别在192.168.2.7 上显示的结果:主页正常,设置的var/www/html/cgi-bin/exp1.pl 为错误代码500,没设置的是403

论坛徽章:
0
5 [报告]
发表于 2014-07-18 12:39 |只看该作者
回复 4# dav_

1. 192.168.2.7 显示正常是因为 index.html 能够正常显示
2. 造成 error 500的原因很多, 建议 查看 apache的error log中详细信息. 一般是在/var/apache/log/error.log
3. Error 403 已经提示无权限执行exp1.pl , 我看文件的owner都是 root


   

论坛徽章:
1
金牛座
日期:2014-08-10 21:59:41
6 [报告]
发表于 2014-07-18 13:00 |只看该作者
回复 5# climby


    感謝你的幫助,我去查看log後發現是perl檔內的代碼有問題導致的錯誤,後來我改成簡單的

  1. #!/usr/bin/perl
  2.     print "Content-type: text/html\n\n";
  3.     print "<html>\n";
  4.     print "<title> PERL CGI</title>\n";
  5.     print "<body>";
  6.     print "hello perl-cgi!!!!!!!";
  7.     print "</body>";
  8.     print "</html>\n";
复制代码
就成功了!
以下是我做過的設定,希望能幫到有相同問題的人:
1. sudo a2enmod cgi
2. 在 /etc/apache2/sites-available/000-default.conf 添加

  1. ScriptAlias /cgi-bin/ /var/www/html/cgi-bin/
  2.         <Directory "/var/www/html/cgi-bin">
  3.             AllowOverride None
  4.             Options +Indexes +ExecCGI +MultiViews +SymLinksIfOwnerMatch
  5.             #Order allow,deny
  6.             Require all granted
  7.             Allow from all
  8.         </Directory>
复制代码

论坛徽章:
1
IT运维版块每日发帖之星
日期:2016-03-09 06:20:00
7 [报告]
发表于 2014-07-21 10:37 |只看该作者
看题目感觉别扭,原来是LAMP
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP