Bugzilla安装和编辑所遇到的问题
作者:网络转载 发布时间:[ 2013/12/25 16:28:09 ] 推荐标签:测试技术 测试工具 bug 缺陷
3. Start apache 遇到问题 - httpd: Could not reliably determine the server's fully qualified domain name
启动apache遇到错误:httpd: Could not reliably determine the server's fully qualified domain name
[root@server httpd-2.2.4]# /usr/local/apache/bin/apachectl start
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
1)进入apache的安装目录:(视个人安装情况而不同) [root@server ~]# cd /usr/local/apache/conf
2)编辑httpd.conf文件,搜索"#ServerName",添加ServerName localhost:80
[root@server conf]# ls
extra httpd.conf magic mime.types original
[root@server conf]# vi httpd.conf
#ServerName www.example.com:80
ServerName localhost:80
|
3)再重新启动apache 即可。
[root@server ~]# /usr/local/apache/bin/apachectl restart
4. 编译apahce时出错,缺少 apr,apr-util,prce。
完成#3配置后,要编译一下apache,命令如下
./configure
--prefix=/data/apache2
--enable-so
--enable-rewrite
--enable-vhost-alias=shared
--enable-cache=shared
--enable-file-cache=shared
--enable-disk-cache=shared
--enable-mem-cache=shared
--enable-proxy=shared
--enable-proxy-http=shared
--enable-proxy-ajp=shared
--enable-proxy-balancer=shared
--enable-proxy-connect=shared
--enable-dav --enable-dav-fs
--disable-proxy-ftp
--disable-userdir
--disable-asis
--enable-ssl
--with-mpm=worker
--with-apr=/usr/local/apr
--with-apr-util=/usr/local/apr-util/
--with-pcre=/usr/local/pcre
|
5. 在安装perl模板遇到问题:
第一次运行 -- “/usr/bin/perl install-module.pl –all”
会遇到 -- can not find install-module.pl 问题。
如何解决?
当运行完 -- ./checksetup.pl 完后,再次运行 /usr/bin/perl install-module.pl –all。
6. #指定Bugzilla的访问目录
<Directory /data/apache2/htdocs/bugzilla>
AddHandler cgi-script .cgi
Options +Indexes +ExecCGI
DirectoryIndex index.cgi
AllowOverride Limit FileInfo Indexes
</Directory>
|
7. 访问http://servername/bugzilla/index.cgi是遇到 500 internal server error的问题
解决方法是,查看 bugzilla官网安装介绍 2.2.4.1.1. Apache httpd? with mod_cgi 发现指定的bugzilla路径的配置与自己有不一样
<Directory /var/www/html/bugzilla>
AddHandler cgi-script .cgi
Options +ExecCGI
DirectoryIndex index.cgi index.html
AllowOverride Limit FileInfo Indexes Options
</Directory>
|
然后我把#6的配置改下列信息后,能访问http://servername/bugzilla/index.cgi
<Directory /data/apache2/htdocs/bugzilla>
AddHandler cgi-script .cgi
Options +ExecCGI
DirectoryIndex index.cgi index.html
AllowOverride Limit FileInfo Indexes Options
</Directory>
|
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11