no way to compare when less than two revisions
Differences
This shows you the differences between two versions of the page.
— | openbsd_bugzilla [2014/06/03 23:05] (current) – created - external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== OpenBSD Bugzilla ====== | ||
+ | * [[OpenBSD]] | ||
+ | * [[Bugzilla]] | ||
+ | |||
+ | I managed to get an Apache 1.3 Bugzilla installation setup. | ||
+ | |||
+ | ==== chroot ==== | ||
+ | |||
+ | OpenBSD runs Apache in a root jail, at ''/ | ||
+ | |||
+ | ==== MySQL ==== | ||
+ | |||
+ | First, see the [[OpenBSD MySQL]] docs on how to setup the database server. | ||
+ | |||
+ | Second, copy some necessary libraries into the chroot. | ||
+ | |||
+ | < | ||
+ | mkdir -p / | ||
+ | mkdir -p / | ||
+ | cd /usr/lib | ||
+ | cp libc.so.73.1 | ||
+ | cp / | ||
+ | </ | ||
+ | ==== Bugzilla ==== | ||
+ | |||
+ | Bugzilla itself is really simple to setup. | ||
+ | |||
+ | Bugzilla makes it easy by downloading and installing the modules locally to the installation, | ||
+ | |||
+ | < | ||
+ | perl install-module.pl --all | ||
+ | </ | ||
+ | |||
+ | Once everything is done, edit the '' | ||
+ | |||
+ | Then check the configuration file and go from there: | ||
+ | |||
+ | < | ||
+ | perl checksetup.pl | ||
+ | </ | ||
+ | |||
+ | ==== Apache ==== | ||
+ | |||
+ | Bugzilla is going to run perl as a CGI binary. |