Here are the steps I’ve taken:
STEP 1 RT configure script:
./configure --prefix=/usr/local/rt 
Note nginx runs as user daemon, group daemon 
 
STEP 2 ran:
make testdeps (ran without issues)
Note at this point I assume rt is installed correctly 
 
STEP 3 /etc/init.d/rt script:
#!/bin/sh
RTPATH=/usr/local/rt
case $1 in
stop)
    echo -n "Stopping RT: "
    PIDS=`ps axww | awk '/[m]ason_handler.fcgi/ { print $1}'`
    if [ -n "$PIDS" ]
    then
        echo -n kill -TERM $PIDS
        kill $PIDS
        echo
    else
        echo RT not running
    fi
    ;;
restart|force-reload)
    $0 stop
    $0 start
    ;;
*)
    echo "Usage: /etc/init.d/rt { stop | start | restart }"
    exit 1
    ;;
esac
Note this deviates slightly from the recommendations atFastCGIConfiguration - Request Tracker Wiki  which suggested 
 
chown -R daemon:daemon /usr/local/rt/var/log
STEP 4 Ran the /etc/init.d/rt script
/etc/init.d/rt start → Starting RT: mason_handler.fcgi
This is where I’m stuck - I can’t seem to get the mason_handler to run
I would really appreciate any insights on what I can do to move past
             
            
              
           
          
            
              
                John3  
              
                  
                    November 11, 2008,  2:12pm
                   
                  2 
               
             
            
              out of curiousity, is your webserver running as a user with permissions to
Date: Tue, 11 Nov 2008 07:08:00 -0500jneundorf@wwsys.net RT-Users@lists.bestpractical.com 
Here are the steps I’ve taken:
STEP 1 RT configure script:
./configure --prefix=/usr/local/rt 
Note nginx runs as user daemon, group daemon 
 
STEP 2 ran:
make testdeps (ran without issues)
Note at this point I assume rt is installed correctly 
 
STEP 3 /etc/init.d/rt script:
#!/bin/sh
RTPATH=/usr/local/rt
case $1 in
stop)ps axww | awk '/[m]ason_handler.fcgi/ { print $1}'
restart|force-reload)
*)
Note this deviates slightly from the recommendations atFastCGIConfiguration - Request Tracker Wiki  which suggested 
 
chown -R daemon:daemon /usr/local/rt/var/log
STEP 4 Ran the /etc/init.d/rt script
/etc/init.d/rt start → Starting RT: mason_handler.fcgi
This is where I’m stuck - I can’t seem to get the mason_handler to run
I would really appreciate any insights on what I can do to move past
The rt-users Archives 
Community help: http://wiki.bestpractical.com sales@bestpractical.com 
Discover RT’s hidden secrets with RT Essentials from O’Reilly Media.http://rtbook.bestpractical.com 
 
nimbius@sdf.lonestar.org http://sdf.lonestar.org