Changes between Version 34 and Version 35 of Nmm2022/Agenda/RTsetup
- Timestamp:
- Jul 15, 2022, 4:40:34 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Nmm2022/Agenda/RTsetup
v34 v35 271 271 You can now run Request Tracker. Note that it can be run in standalone mode or via a web server. 272 272 273 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. 274 275 To confirm this; 276 {{{ 277 # netstat -altnp | grep :80 278 }}} 279 280 {{{ 281 tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 3829/perl 282 }}} 283 284 If UFW is running, open this port; 285 {{{ 286 # ufw allow 80/tcp 287 }}} 288 289 273 290 To run RT in standalone mode; 274 291 {{{ … … 277 294 }}} 278 295 279 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.280 281 Please update ufw rules to enable 80 port if ufw is enabled282 283 {{{284 # ufw allow 80285 }}}286 296 287 297 Login using the default RT credentials: … … 290 300 291 301 ''' Password: password ''' 292 293 To confirm this;294 {{{295 # netstat -altnp | grep :80296 }}}297 298 {{{299 tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 3829/perl300 }}}301 302 If UFW is running, open this port;303 {{{304 # ufw allow 80/tcp305 }}}306 302 307 303 Now access the Request Tracker Web Interface via http://server-IP-or-domain. You should land on Request Tracker login page.