Changes between Version 1 and Version 2 of Nmm2022/Agenda/RTsetup


Ignore:
Timestamp:
May 24, 2022, 6:33:25 AM (3 years ago)
Author:
geethike
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Nmm2022/Agenda/RTsetup

    v1 v2  
    44Update system package cache;
    55{{{
    6 #sudo su
    7 #apt update
    8 #apt upgrade
     6# sudo su
     7# apt update
     8# apt upgrade
    99}}}
    1010
    1111=== Install Required Build tools ===
    1212{{{
    13 #apt install build-essential libapache2-mod-fcgid libssl-dev libexpat1-dev libdbd-mysql-perl liblwp-protocol-https-perl libhtml-formattext-withlinks-andtables-perl libhtml-formattext-withlinks-perl html2text
     13# apt install build-essential libapache2-mod-fcgid libssl-dev libexpat1-dev libdbd-mysql-perl liblwp-protocol-https-perl libhtml-formattext-withlinks-andtables-perl libhtml-formattext-withlinks-perl html2text
    1414}}}
     15=== Install Apache Web Server ===
     16{{{
     17#apt install apache2
     18}}}
     19
     20=== Install MariaDB Database Server ===
     21Install 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) ===
     32Download RT 5 Tarball
     33{{{
     34# wget https://download.bestpractical.com/pub/rt/release/rt-5.0.0.tar.gz
     35}}}
     36
     37You can now extract the source code;
     38{{{
     39# tar xzf rt-5.0.0.tar.gz
     40}}}
     41
     42Compile and Install Request Tracker (RT)
     43
     44Change 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}}}
     49Next, check for package dependency.
     50{{{
     51# make testdeps
     52}}}
     53