[rt-users] httpd2-prefork segfaulting on SLES11

Brian Dial bdial at rkk.com
Fri Nov 5 09:26:47 EDT 2010


that looks a lot easier than the wiki made it look, thanks!

----- Original Message -----
On Nov 5, 2010, at 9:09 AM, Brian Dial wrote:

> mod_perl.  fastcgi looked rather complicated so i was hoping to avoid that

Here's the whole of our RT config in apache.  First, install and enable the mod_fastcgi module in apache 2.2, then use the following, but adjust the file paths to match where you put things. Note that the trailing / in the Alias to mason_handler.fcgi is important.

Also you will want to make sure that the mason cache directory is writable by the user your apache runs under.  it will complain if this is not the case.

# RT3 Setup

<Directory "/usr/local/share/rt38">
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>


# set idle timeout a bit longer than RT's idle timeout.
FastCgiServer /usr/local/share/rt38/bin/mason_handler.fcgi -processes 8 -idle-timeout 305

<VirtualHost *:80>
    ServerName rt.example.com
    DocumentRoot "/usr/local/share/rt38/html"
    AddDefaultCharset UTF-8
    ErrorLog /var/log/httpd-rt-error.log
    CustomLog /var/log/httpd-rt-access.log combined
    AddHandler fastcgi-script fcgi

    Alias /NoAuth/images /usr/local/share/rt38/html/NoAuth/images
    Alias / /usr/local/share/rt38/bin/mason_handler.fcgi/

</VirtualHost>                                  

# END RT3 Setup
###################################################################



"RK&K" and "RK&K Engineers" are registered trade names of Rummel, Klepper & Kahl, LLP, a Maryland 
limited liability partnership.  This message contains confidential information intended only for
the person or persons named above.  If you have received this message in error, please immediately 
notify the sender by return email and delete the message.  Thank you.



More information about the rt-users mailing list