Changes between Version 14 and Version 15 of Nmm2022/Agenda/RTsetup


Ignore:
Timestamp:
May 24, 2022, 8:10:26 AM (3 years ago)
Author:
geethike
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Nmm2022/Agenda/RTsetup

    v14 v15  
    246246# chown -R www-data: /var/log/rt5
    247247}}}
     248=== Running Request Tracker in Standalone Mode ===
     249You can now run Request Tracker. Note that it can be run in standalone mode or via a web server.
     250
     251To run RT in standalone mode;
     252{{{
     253# systemctl stop apache2
     254# /opt/rt5/sbin/rt-server
     255}}}
     256
     257This should open the web server port 80 and you should be able to access your Request Tracker web interface via the url, http://server-IP-or-domain.
     258
     259To confirm this;
     260{{{
     261# netstat -altnp | grep :80
     262}}}
     263
     264{{{
     265tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      3829/perl
     266}}}
     267
     268If UFW is running, open this port;
     269{{{
     270# ufw allow 80/tcp
     271}}}