it:linux:debian:bugzilla

Bugzilla

  1. apt-get install -y apache2 mysql-server libdatetime-perl libtime-format-perl libtimedate-perl libtemplate-perl libemail-mime-perl libemail-send-perl liburi-perl libmath-random-isaac-perl libgd-gd2-perl libchart-perl libxml-twig-perl liblwp-useragent-determined-perl libsoap-lite-perl libjson-rpc-perl libjson-xs-perl libhtml-parser-perl libhtml-scrubber-perl libencode-detect-perl libhtml-formattext-withlinks-perl libfile-mimeinfo-perl libgd-text-perl libgd-graph-perl libtest-taint-perl libtemplate-plugin-gd-perl 
  2. Bugzilla downloaden: hier
  3. … und entpacken nach /var/www
  4. mysql -u root -p
  5. GRANT SELECT, INSERT,
    UPDATE, DELETE, INDEX, ALTER, CREATE, LOCK TABLES,
    CREATE TEMPORARY TABLES, DROP, REFERENCES ON bugs.*
    TO bugs@localhost IDENTIFIED BY '1234';

    : legt die Datenbank namens 'bugs' mit Passwort '1234' an.

  6. FLUSH PRIVILEGES;
  7. in localconfig:
    $db_pass = '1234';

    und

    $webservergroup = 'www-data';

    anpassen.

  8. ./checksetup.pl

    Admin ist test@test.com mit Passwort '123456'.

  9. cd /var/www; ln -s bugzilla* bugzilla
  10. In /etc/apache2/sites-enabled/000-default:
      <Directory /var/www/bugzilla>
        AddHandler cgi-script .cgi
        Options +ExecCGI
        DirectoryIndex index.cgi index.html
        AllowOverride Limit FileInfo Indexes Options
      </Directory>

    hinzufuegen.

  11. Apache neustarten
  12. Jetzt ist bugzilla unter <ip>/bugzilla zu erreichen!

Fuer Oracle VirtualBox

  • Debian 7
  • Apache2
  • mysql
  • bugzilla 4.4
  • it/linux/debian/bugzilla.txt
  • Zuletzt geändert: 2015/12/24 14:26
  • von 127.0.0.1