Avatar
分类
最新评论
最新留言
链接
Bugzilla setup on Ubuntu step by step
- apt-get install mysql-server mysql-client apache2
- apt-get install sendmail
- download bugzilla-4.4.tar.gz
- tar xvzf bugzilla-4.4.tar.gz
- mv bugzilla-4.4 /usr/local
- ln -s /usr/local/bugzilla-4.4 /var/www
- ./checksetup.pl --check-modules
- perl install-module.pl --all
- ./checksetup.pl
- vi localconfig to modify $webservergroup, $db_user, and $db_pass
- vi /etc/apache2/envvars to modify APACHE_RUN_USER and APACHE_RUN_GROUP if need
- vi /etc/mysql/my.cnf to add allowed attachment size
- vi /etc/apache2/apache2.conf to add section [1]
- vi /var/www/bugzilla/data/params # modify urlbase
[1] : <Directory /var/www/bugzilla> AddHandler cgi-script .cgi AddHandler cgi-script .pl Options +ExecCGI DirectoryIndex index.cgi index.html AllowOverride Limit FileInfo Indexes Options </Directory>