4.1. Step-by-step Install

Bugzilla has been successfully installed under many different operating systems including almost all Unix clones and Microsoft Windows. Many operating systems have utilities that make installation easier or quirks that make it harder. We have tried to collect that information in Section 4.3, so be sure to check out that section before you start your installation.

Note

Windows is one of those operating systems that has many quirks and is not yet officially supported by the Bugzilla team. If you wish to install Bugzilla on Windows, be sure to see Section 4.3.1.

Warning

While installing Bugzilla, it is a good idea to ensure that there is some kind of firewall between you and the rest of the Internet as your machine may be insecure for periods during the install. Many installation steps require an active Internet connection to complete, but you must take care to ensure that at no point is your machine vulnerable to an attack.

This guide assumes that you already have your operating system installed, network configured, and have administrative access to the shell on the machine you are installing Bugzilla onto. It is possible to install and run Bugzilla without administrative access, but you have to either make sure all the required software is installed or get somebody with administrative access to install it for you.

The listing below is a basic step-by-step list. More information can be found in the sections below. Minimum versions will be included in parenthesis where appropriate.

  1. Install MySQL (3.23.41)

  2. Install Perl (5.6)

  3. Install Perl Modules

  4. Install a Webserver

  5. Put Bugzilla in the Webspace

  6. Setup the MySQL Database

4.1.1. MySQL

Visit the MySQL homepage at http://www.mysql.com to grab and install the latest stable release of the server.

Note

Many of the binary versions of MySQL store their data files in /var. On some Unix systems, this is part of a smaller root partition, and may not have room for your bug database. You can set the data directory as an option to configure if you build MySQL from source yourself.

If you install from something other than a packaging/installation system (such as .rpm, .dep, .exe, or .msi) you will need to configure your system so the MySQL server daemon will come back up whenever your machine reboots.

If you wish to have attachments larger than 64K, you will have to configure MySQL to accept large packets. This is done by adding the text in Figure 4-1 to your my.conf file. There is also a parameter in Bugzilla for setting the maximum allowable attachment size. You should set this value to be slightly larger than that parameter.

Figure 4-1. Set Max Packet Size in MySQL


[mysqld]
# Allow packets up to 1M
set-variable = max_allowed_packet=1M
        

If you are running Bugzilla and MySQL on the same machine, you may also wish to utilize the skip-networking option as mentioned in Section 5.6.2 for the added security.

4.1.2. Perl

Any machine that doesn't have Perl on it is a sad machine indeed. Perl can be got in source form from http://www.perl.com. There are also binary versions available for many platforms, most of which are linked to from perl.com. Although Bugzilla runs with perl 5.6, it's a good idea to be up to the very latest version if you can when running Bugzilla. As of this writing, that is Perl version 5.8.

4.1.3. Perl Modules

Perl modules can be found using CPAN on Unix based systems or PPM on Win32. The root servers have a real tendency to bog down, so please use mirrors.

Good instuctions can be found for using each of these services on their respective websites. The basics can be found in Example 4-1 for CPAN and Section 4.3.1.2 for PPM.

Example 4-1. Installing perl modules with CPAN

The easy way:

bash# perl -MCPAN -e 'install "<modulename>"'
          

Or the hard way:

bash# tar xzvf <module>.tar.gz     (1)
bash# cd <module>                  (2)
bash# perl Makefile.PL
bash# make
bash# make test
bash# make install
          

(1)
This assumes that you've already downloaded the <module>.tar.gz to the current working directory.
(2)
The process of untaring the module as defined in (1) will create the <module> directory.

Tip

Many people complain that Perl modules will not install for them. Most times, the error messages complain that they are missing a file in "@INC". Virtually every time, this error is due to permissions being set too restrictively for you to compile Perl modules or not having the necessary Perl development libraries installed on your system. Consult your local UNIX systems administrator for help solving these permissions issues; if you are the local UNIX sysadmin, please consult the newsgroup/mailing list for further assistance or hire someone to help you out.

Perl Modules (minimum version):

  1. Bundle::Bugzilla (Will allow you to skip the rest)

  2. AppConfig (1.52)

  3. CGI (2.88)

  4. Data::Dumper (any)

  5. Date::Format (2.21)

  6. DBI (1.32)

  7. DBD::mysql (2.1010)

  8. File::Spec (0.82)

  9. File::Temp (any)

  10. Template Toolkit (2.08)

  11. Text::Wrap (2001.0131)

and, optionally:

  1. GD (1.20) for bug charting

  2. Chart::Base (0.99c) for bug charting

  3. XML::Parser (any) for the XML interface

  4. GD::Graph (any) for bug charting

  5. GD::Text::Align (any) for bug charting

  6. MIME::Parser (any) for the email interface

4.1.3.1. Bundle::Bugzilla

If you are running at least perl 5.6.1, you can save yourself a lot of time by using Bundle::Bugzilla. This bundle contains every module required to get Bugzilla running. It does not include GD and friends, but these are not required for a base install and can always be added later if the need arises.

Assuming your perl was installed with CPAN (most unix installations are), using Bundle::Bugzilla is really easy. Simply follow along with the commands below.


bash# perl -MCPAN -eshell              (1)
cpan shell -- CPAN exploration and modules installation (v1.63)
ReadLine support enabled

cpan>

        
(1)
At this point, unless you've used CPAN on this machine before, you'll have to go through a series of configuration steps.

4.1.3.2. AppConfig (1.52)

Dependency for Template Toolkit. We probably don't need to specifically check for it anymore.

4.1.3.3. CGI (2.88)

The CGI module parses form elements and cookies and does many other usefule things. It come as a part of recent perl distributions, but Bugzilla needs a fairly new version.


        CPAN Download Page: http://search.cpan.org/dist/CGI.pm/
        PPM Download Link: http://ppm.activestate.com/PPMPackages/zips/6xx-builds-only/CGI.zip
        Documentation: http://www.perldoc.com/perl5.8.0/lib/CGI.html
      

4.1.3.4. Data::Dumper (any)

The Data::Dumper module provides data structure persistence for Perl (similar to Java's serialization). It comes with later sub-releases of Perl 5.004, but a re-installation just to be sure it's available won't hurt anything.


        CPAN Download Page: http://search.cpan.org/dist/Data-Dumper/
        PPM Download Link: http://ppm.activestate.com/PPMPackages/zips/6xx-builds-only/Data-Dumper.zip
        Documentation: http://www.perldoc.com/perl5.8.0/lib/Data/Dumper.html
      

4.1.3.5. TimeDate modules (2.21)

Many of the more common date/time/calendar related Perl modules have been grouped into a bundle similar to the MySQL modules bundle. This bundle is stored on the CPAN under the name TimeDate. The component module we're most interested in is the Date::Format module, but installing all of them is probably a good idea anyway.


        CPAN Download Page: http://search.cpan.org/dist/TimeDate/
        PPM Download Link: http://ppm.activestate.com/PPMPackages/zips/6xx-builds-only/TimeDate.zip
        Documentation: http://search.cpan.org/dist/TimeDate/lib/Date/Format.pm
      

4.1.3.6. DBI (1.32)

The DBI module is a generic Perl module used the MySQL-related modules. As long as your Perl installation was done correctly the DBI module should be a breeze. It's a mixed Perl/C module, but Perl's MakeMaker system simplifies the C compilation greatly.


        CPAN Download Page: http://search.cpan.org/dist/DBI/
        PPM Download Link: http://ppm.activestate.com/PPMPackages/zips/6xx-builds-only/DBI.zip
        Documentation: http://dbi.perl.org/doc/
      

4.1.3.7. MySQL-related modules

The Perl/MySQL interface requires a few mutually-dependent Perl modules. These modules are grouped together into the the Msql-Mysql-modules package.

The MakeMaker process will ask you a few questions about the desired compilation target and your MySQL installation. For most of the questions the provided default will be adequate, but when asked if your desired target is the MySQL or mSQL packages, you should select the MySQL related ones. Later you will be asked if you wish to provide backwards compatibility with the older MySQL packages; you should answer YES to this question. The default is NO.

A host of 'localhost' should be fine and a testing user of 'test' with a null password should find itself with sufficient access to run tests on the 'test' database which MySQL created upon installation.


        CPAN Download Page: http://search.cpan.org/dist/DBD-mysql/
        PPM Download Link: http://ppm.activestate.com/PPMPackages/zips/6xx-builds-only/DBD-Mysql.zip
        Documentation: http://search.cpan.org/dist/DBD-mysql/lib/DBD/mysql.pod
      

4.1.3.8. File::Spec (0.82)

File::Spec is a perl module that allows file operations, such as generating full path names, to work cross platform.


        CPAN Download Page: http://search.cpan.org/dist/File-Spec/
        PPM Download Page: http://ppm.activestate.com/PPMPackages/zips/6xx-builds-only/File-Spec.zip
        Documentation: http://www.perldoc.com/perl5.8.0/lib/File/Spec.html
      

4.1.3.9. File::Temp (any)

File::Temp is used to generate a temporary filename that is guaranteed to be unique. It comes as a standard part of perl


        CPAN Download Page: http://search.cpan.org/dist/File-Spec/
        PPM Download Link: http://ppm.activestate.com/PPMPackages/zips/6xx-builds-only/File-Spec.zip
        Documentation: http://www.perldoc.com/perl5.8.0/lib/File/Temp.html
      

4.1.3.10. Template Toolkit (2.08)

When you install Template Toolkit, you'll get asked various questions about features to enable. The defaults are fine, except that it is recommended you use the high speed XS Stash of the Template Toolkit, in order to achieve best performance.


        CPAN Download Page: http://search.cpan.org/dist/Template-Toolkit/
        PPM Download Link: http://openinteract.sourceforge.net/ppmpackages/5.6/Template-Toolkit.tar.gz
        Documentation: http://www.template-toolkit.org/docs.html
      

4.1.3.11. Text::Wrap (2001.0131)

Text::Wrap is designed to proved intelligent text wrapping.


        CPAN Download Page: http://search.cpan.org/dist/Text-Tabs+Wrap/
        Documentation: http://www.perldoc.com/perl5.8.0/lib/Text/Wrap.html
      

4.1.3.12. GD (1.20) [optional]

The GD library was written by Thomas Boutell a long while ago to programmatically generate images in C. Since then it's become the defacto standard for programmatic image construction. The Perl bindings to it found in the GD library are used on millions of web pages to generate graphs on the fly. That's what Bugzilla will be using it for so you must install it if you want any of the graphing to work.

Note

The Perl GD library requires some other libraries that may or may not be installed on your system, including libpng and libgd. The full requirements are listed in the Perl GD library README. If compiling GD fails, it's probably because you're missing a required library.

Tip

The version of the GD perl module you need is very closely tied to the libgd version installed on your system. If you have a version 1.x of libgd the 2.x versions of the GD perl module won't work for you.


        CPAN Download Page: http://search.cpan.org/dist/GD/
        PPM Download Link: http://ppm.activestate.com/PPMPackages/zips/6xx-builds-only/GD.zip
        Documentation: http://stein.cshl.org/WWW/software/GD/
      

4.1.3.13. Chart::Base (0.99c) [optional]

The Chart module provides Bugzilla with on-the-fly charting abilities. It can be installed in the usual fashion after it has been fetched from CPAN. Note that earlier versions that 0.99c used GIFs, which are no longer supported by the latest versions of GD.


        CPAN Download Page: http://search.cpan.org/dist/Chart/
        PPM Download Link: http://ppm.activestate.com/PPMPackages/zips/6xx-builds-only/Chart.zip
      

4.1.3.14. XML::Parser (any) [Optional]

XML::Parser is used by the importxml.pl script. You only need it if you are going to be importing bugs (such as for bug moving). XML::Parser requires that the expat library is already installed on your machine.


        CPAN Download Page: http://search.cpan.org/dist/XML-Parser/
        Documentation: http://www.perldoc.com/perl5.6.1/lib/XML/Parser.html
      

4.1.3.15. GD::Graph (any) [Optional]

In addition to GD listed above, the reporting interface of Bugzilla needs to have the GD::Graph module installed.


        CPAN Download Page: http://search.cpan.org/dist/GDGraph/
        PPM Download Link: http://ppm.activestate.com/PPMPackages/zips/6xx-builds-only/GDGraph.zip
        Documentation: http://search.cpan.org/dist/GDGraph/Graph.pm
      

4.1.3.16. GD::Text::Align (any) [Optional]

GD::Text::Align, as the name implies, is used to draw aligned strings of text. It is needed by the reporting interface.


        CPAN Download Page: http://search.cpan.org/dist/GDTextUtil/
        PPM Download Page: http://ppm.activestate.com/PPMPackages/zips/6xx-builds-only/GDTextUtil.zip
        Documentation: http://search.cpan.org/dist/GDTextUtil/Text/Align.pm
      

4.1.3.17. MIME::Parser (any) [Optional]

MIME::Parser is only needed if you want to use the e-mail interface located in the contrib directory.


        CPAN Download Page: http://search.cpan.org/dist/MIME-tools/
        PPM Download Link: http://ppm.activestate.com/PPMPackages/zips/6xx-builds-only/MIME-tools.zip
        Documentation: http://search.cpan.org/dist/MIME-tools/lib/MIME/Parser.pm
      

4.1.4. HTTP Server

You have freedom of choice here, pretty much any web server that is capable of running CGI scripts will work. Section 4.4 has more information about configuring web servers to work with Bugzilla.

Note

We strongly recommend Apache as the web server to use. The Bugzilla Guide installation instructions, in general, assume you are using Apache. If you have got Bugzilla working using another webserver, please share your experiences with us by filing a bug in Bugzilla Documentation.

4.1.5. Bugzilla

You should untar the Bugzilla files into a directory that you're willing to make writable by the default web server user (probably "nobody"). You may decide to put the files in the main web space for your web server or perhaps in /usr/local with a symbolic link in the web space that points to the Bugzilla directory.

Tip

If you symlink the bugzilla directory into your Apache's HTML hierarchy, you may receive Forbidden errors unless you add the "FollowSymLinks" directive to the <Directory> entry for the HTML root in httpd.conf.

Once all the files are in a web accessible directory, make that directory writable by your webserver's user. This is a temporary step until you run the post-install checksetup.pl script, which locks down your installation.

Caution

The default Bugzilla distribution is not designed to be placed in a cgi-bin directory (this includes any directory which is configured using the ScriptAlias directive of Apache). This will probably change as part of bug 44659.

4.1.6. Setting Up the MySQL Database

After you've gotten all the software installed and working you're ready to start preparing the database for its life as the back end to a high quality bug tracker.

This first thing you'll want to do is make sure you've given the "root" user a password as suggested in Section 5.6.2. For clarity, these instructions will assume that your MySQL user for Bugzilla will be "bugs_user", the database will be called "bugs_db" and the password for the "bugs_user" user is "bugs_password". You should, of course, substitute the values you intend to use for your site.

Note

Most people use "bugs" for both the user and database name.

Next, we use an SQL GRANT command to create a "bugs_user" user, and grant sufficient permissions for checksetup.pl, which we'll use later, to work its magic. This also restricts the "bugs_user" user to operations within a database called "bugs_db", and only allows the account to connect from "localhost". Modify it to reflect your setup if you will be connecting from another machine or as a different user.


mysql> GRANT SELECT,INSERT,UPDATE,DELETE,INDEX,ALTER,CREATE,
       DROP,REFERENCES ON bugs_db.* TO bugs_user@localhost
       IDENTIFIED BY 'bugs_password';
mysql> FLUSH PRIVILEGES;
      

Note

If you are using MySQL 4, the bugs user also needs to be granted the LOCK TABLES and CREATE TEMPORARY TABLES permissions.

4.1.7. checksetup.pl

Next, run the magic checksetup.pl script. (Many thanks to Holger Schurig for writing this script!) This script is designed to make sure your perl modules are the correct version and your MySQL database and other configuration options are consistent with the Bugzilla CGI files. It will make sure Bugzilla files and directories have reasonable permissions, set up the data directory, and create all the MySQL tables.


bash# ./checksetup.pl
      

The first time you run it, it will create a file called localconfig.

This file contains a variety of settings you may need to tweak including how Bugzilla should connect to the MySQL database.

The connection settings include:

  1. server's host: just use "localhost" if the MySQL server is local

  2. database name: "bugs_db" if you're following these directions

  3. MySQL username: "bugs_user" if you're following these directions

  4. Password for the "bugs_user" MySQL account; ("bugs_password" above)

Once you are happy with the settings, su to the user your web server runs as, and re-run checksetup.pl. (Note: on some security-conscious systems, you may need to change the login shell for the webserver account before you can do this.) On this second run, it will create the database and an administrator account for which you will be prompted to provide information.

Note

The checksetup.pl script is designed so that you can run it at any time without causing harm. You should run it after any upgrade to Bugzilla.

4.1.8. Configuring Bugzilla

You should run through the parameters on the Edit Parameters page (link in the footer) and set them all to appropriate values. They key parameters are documented in Section 5.1.