| 15 | === Install Apache Web Server === |
| 16 | {{{ |
| 17 | #apt install apache2 |
| 18 | }}} |
| 19 | |
| 20 | === Install MariaDB Database Server === |
| 21 | Install MariaDB 10.5 on Ubuntu 20.04; |
| 22 | {{{ |
| 23 | # apt-key adv --fetch-keys 'http://mariadb.org/mariadb_release_signing_key.asc' |
| 24 | |
| 25 | # add-apt-repository 'deb [arch=amd64] http://mariadb.mirror.globo.tech/repo/10.5/ubuntu focal main' |
| 26 | |
| 27 | #apt update |
| 28 | #apt install mariadb-server mariadb-client |
| 29 | }}} |
| 30 | |
| 31 | === Install Request Tracker (RT) === |
| 32 | Download RT 5 Tarball |
| 33 | {{{ |
| 34 | # wget https://download.bestpractical.com/pub/rt/release/rt-5.0.0.tar.gz |
| 35 | }}} |
| 36 | |
| 37 | You can now extract the source code; |
| 38 | {{{ |
| 39 | # tar xzf rt-5.0.0.tar.gz |
| 40 | }}} |
| 41 | |
| 42 | Compile and Install Request Tracker (RT) |
| 43 | |
| 44 | Change to RT 5 source code directory and configure it to adapt it to the system as well as check if required package dependency is met; |
| 45 | {{{ |
| 46 | # cd rt-5.0.0/ |
| 47 | # ./configure |
| 48 | }}} |
| 49 | Next, check for package dependency. |
| 50 | {{{ |
| 51 | # make testdeps |
| 52 | }}} |
| 53 | |