| 248 | === Running Request Tracker in Standalone Mode === |
| 249 | You can now run Request Tracker. Note that it can be run in standalone mode or via a web server. |
| 250 | |
| 251 | To run RT in standalone mode; |
| 252 | {{{ |
| 253 | # systemctl stop apache2 |
| 254 | # /opt/rt5/sbin/rt-server |
| 255 | }}} |
| 256 | |
| 257 | This 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 | |
| 259 | To confirm this; |
| 260 | {{{ |
| 261 | # netstat -altnp | grep :80 |
| 262 | }}} |
| 263 | |
| 264 | {{{ |
| 265 | tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 3829/perl |
| 266 | }}} |
| 267 | |
| 268 | If UFW is running, open this port; |
| 269 | {{{ |
| 270 | # ufw allow 80/tcp |
| 271 | }}} |