Project

General

Profile

HowTo configure Apache to run Redmine » History » Version 9

Patrick OMalley, 2009-09-03 17:40
ruby installation may not be in /usr/local/bin/ruby, edited to emph that it could be elsewhere

1 1 Cyber Sprocket
h1. HowTo configure Apache to run Redmine
2
3 7 Mischa The Evil
{{>toc}}
4 1 Cyber Sprocket
5 2 Cyber Sprocket
These notes assume you already have Redmine running via the webrick server and are looking to get Redmine running via your existing Apache installation.   Most of the commands assume you are in the root installation directory of redmine, so be sure to change directory there before starting.
6 1 Cyber Sprocket
7
h2. For CentOS 5
8
9
h3. Assumptions
10
11
* OS is CentOS 5
12
* Web server is Apache 2
13
** mod_cgi is enabled
14
** name based virtual servers are being used
15 2 Cyber Sprocket
** the web server runs under the user apache, group apache
16 1 Cyber Sprocket
17 4 Cyber Sprocket
h3. Myths
18
19
* You do not need to run mod_fcgid
20
* You do not need to run mod_fastcgi
21 8 William Baum
 
22
bq. -This section needs work. I can't tell if these are the myths or the corrections to the myths.
23
_(note: if someone were so generous to post working, known good, HOWTO steps here for enabling FastCGI, that would be highly valuable to the entire community.- It is reported that www.redmine.org itself runs FastCGI, so it is obviously a valid, worthwhile, stable, performing way to run this great great web app'.)_
24 5 Brad Mace
25 8 William Baum
bq. I have added sections detailing the installation and configuration of mod_fastcgi and mod_fcid below. --wmbaum, (2009-08-30)
26
27 1 Cyber Sprocket
h3. Basic Steps
28
29
* Install Redmine per the installation instructions and get it running with webrick.
30
31
* Kill the webrick session
32
33
* Copy the public/dispatch.cgi.example to public/dispatch.cgi
34
35 9 Patrick OMalley
* Edit public/dispatch.cgi to fix the shell script invocation to point to your ruby install location like:
36 1 Cyber Sprocket
  @#!/usr/local/bin/ruby@
37 9 Patrick OMalley
  or 
38
  @#!/usr/bin/ruby@
39 1 Cyber Sprocket
40
* Make sure public/dispatch.cgi has execute permissions via:
41
  @# chmod 755 public/dispatch.cgi@
42
43
* Update the config/environment.rb file to force the rails environment to production, simply uncomment this line at the start of the file:
44
  @ENV['RAILS_ENV'] ||= 'production'@
45
46 3 Cyber Sprocket
* Add your virtual host entry to the apache configuration file (/etc/httpd/conf/httpd.conf).  We installed redmine into the /live/redmine folder on our server. _Note: be sure to point your DocumentRoot to the public sub-folder!_
47
48 1 Cyber Sprocket
<pre>
49
    <VirtualHost *:80>
50
        ServerName redmine.<YOUR-DOMAIN>.com
51
        ServerAdmin webmaster@<YOUR-DOMAIN>.com
52
        DocumentRoot /live/redmine/public/
53
        ErrorLog logs/redmine_error_log
54
55
        <Directory "/live/redmine/public/">
56
                Options Indexes ExecCGI FollowSymLinks
57
                Order allow,deny
58
                Allow from all
59
                AllowOverride all
60
        </Directory>
61
    </VirtualHost>
62
</pre>
63
64
* Make sure your files, log, tmp, and vendor directories are all accessible (read/write) by user apache, group apache. We did that via a change of ownership:
65
  @# chown -R apache:apache files log tmp vendor@
66
67
68 2 Cyber Sprocket
h3. Error Messages and Resolutions
69 1 Cyber Sprocket
70 2 Cyber Sprocket
  * @Rails requires RubyGems >= 0.9.4. Please install RubyGems@
71 1 Cyber Sprocket
    Look for rogue versions of ruby binaries.  We had an older version in /usr/bin/ruby as well as /usr/local/bin/ruby.
72
73 2 Cyber Sprocket
  * @Premature script headers@
74
    This is the generic "got something before the Content-Type: header in a CGI script" error from Apache.  Run dispatch.cgi (see below) and see what comes out BEFORE the Content-Type: directive.
75
76 8 William Baum
h3. Helpful Commands
77 2 Cyber Sprocket
78
 * @# which ruby@
79
   tells you which ruby binary is being run when the fully-qualified-filename has not been specified.
80
81
 * @# find / -name ruby@
82
   searches your entire system for any file named ruby, warning: can take a while on large filesystems.
83
 
84
 * @# ruby -v@
85 1 Cyber Sprocket
   tell you what version of ruby you are running by default
86
87
 * @#public/dispatch.cgi@
88
   runs the dispatch CGI script.   It should spit out HTML that start with @Content-Type: text/html; charset=utf-8@, if ANYTHING precedes the Content-Type text you will get a "premature script headers" error in the Apache log files.
89 8 William Baum
90
91
h2. mod_fastcgi
92
93
I suggest getting redmine running with mod_cgi above, not only to verify your basic redmine and apache configuration, but also so you can appreciate the perfomance gains you'll get from mod_fastcgi or mod_fcid.
94
95
We'll start with "mod_fastcgi":http://www.fastcgi.com/.  
96
97
Install prerequisites:
98
99
<pre>
100
yum install libtool httpd-devel apr-devel apr
101
</pre>
102
103
h3. Download and Install mod_fastcgi
104
105
<pre>
106
cd /usr/local/src/
107
wget http://www.fastcgi.com/dist/mod_fastcgi-current.tar.gz
108
109
tar -zxvf mod_fastcgi-current.tar.gz
110
cd mod_fastcgi-2.4.6/
111
cp Makefile.AP2 Makefile 
112
make top_dir=/usr/lib/httpd
113
make install top_dir=/usr/lib/httpd
114
</pre>
115
116
Create or edit @/etc/httpd/conf.d/mod_fastcgi.conf@
117
<pre>
118
LoadModule fastcgi_module modules/mod_fastcgi.so
119
<IfModule mod_fastcgi.c>
120
FastCgiIpcDir /tmp/fcgi_ipc/
121
</IfModule>
122
</pre>
123
124
The @/tmp/fcgi_ipc/@ directory needs to be writable to the apache user:
125
<pre>
126
chown -R apache.apache /tmp/fcgi_ipc/
127
chmod -R 777 /tmp/fcgi_ipc/
128
</pre>
129
130
> Note:  I had to do this more than once.. It created directories which it then didn't own.. ??
131
132
h3. Download and install @fcgi@ (for fcgi gem)
133
134
<pre>
135
wget http://www.fastcgi.com/dist/fcgi-2.4.0.tar.gz
136
tar -zxvf fcgi-2.4.0.tar.gz
137
cd fcgi-2.4.0
138
./configure
139
make
140
make install
141
</pre>
142
143
h3. Install fcgi gem:
144
145
<pre>
146
gem install fcgi
147
</pre>
148
149
h2. Configuring redmine to use fastcgi:
150
151
In your redmine/public/ directory, copy @dispatch.fcgi.example@ to @dispatch.fcgi@
152
> Note: Mine was shebanged to "#!/usr/bin/env ruby", which is fine.  I found a reference or two that seemed to indicate the 'env' bit is preferable to calling ruby directly.  If this doesn't work, then you'll need to change it to wherever your ruby is as above.
153
154
@./public/.htaccess@
155
<pre>
156
#<IfModule mod_fastcgi.c>
157
#       RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
158
#</IfModule>
159
#<IfModule mod_fcgid.c>
160
#       RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
161
#</IfModule>
162
#<IfModule mod_cgi.c>
163
#       RewriteRule ^(.*)$ dispatch.cgi [QSA,L]
164
#</IfModule>
165
RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
166
</pre>
167
168
The default .htaccess will use cgi if it's available, so we need to force fcgi.  You could perhaps rearrange the directives to prefer fcgi -- I just commented out the others and forced it with <code>RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]</code>  You can see which one is actually in use with <code>ps gaux</code>
169
170
Give it a whirl:
171
<pre>
172
/etc/init.d/httpd configtest
173
/etc/init.d/httpd restart
174
</pre>
175
176
h2. Additional Apache Configuration
177
178
When I first fired up apache with redmine, apache started very slowly and sucked up a significantly larger chunk of RAM than normal.  Further investigation revealed that it had fired off *8* @ruby .../redmine/public/dispatch.fcgi@ processes! No wonder it was slow. 
179
180
I was running redmin under the apache default VirtualHost, and the default StartServers, MinSpareServers, etc. applied.  You can adjust the defaults in @/etc/httpd/conf/httpd.conf@ or even better is to run redmine under a @NameVirtualHost@ or a different @VirtualHost@.  This prevents apache from firing off a bunch of extraneous processes, and @NameVirtualHost@ should allow you to configure multiple redmine environments on the same IP without wasting a bunch of resources.
181
182
If you're having issues with apache virtual hosts, this can be very helpful:
183
<pre>
184
/usr/sbin/httpd -t -D DUMP_VHOSTS
185
</pre>
186
187
h2. mod_fcgid
188
189
"mod_fcgid":http://fastcgi.coremail.cn/ seems newer and preferable to mod_fastcgi.
190
191
<pre>
192
cd /usr/local/src/
193
http://downloads.sourceforge.net/project/mod-fcgid/mod-fcgid/mod_fcgid.2.2.tar.gz/mod_fcgid.2.2.tgz
194
</pre>
195
196
Edit Makefile
197
<pre>
198
#top_dir      = /usr/local/apache2
199
top_dir      = /usr/lib/httpd
200
</pre>
201
202
Edit/create @/etc/httpd/conf.d/mod_fcgid.conf@
203
<pre>
204
LoadModule fcgid_module /usr/lib/httpd/modules/mod_fcgid.so
205
206
<IfModule mod_fcgid.c>
207
    SocketPath /tmp/fcgid_sock/
208
    AddHandler fcgid-script .fcgi
209
</IfModule>
210
</pre>
211
212
Now you should be able to switch between mod_fastcgi and mod_fcgid by renaming one of them to other than *.conf in @/etc/httpd/conf.d/@
213
<pre>
214
cd /etc/httpd/conf.d/
215
mv mod_fastcgi.conf mod_fastcgi.conf.not
216
/etc/init.d/httpd restart
217
</pre>
218
219
h2. Installation Sources
220
221
In the above steps, I installed from sources only where I didn't find any RPM's in common repo's.  I'm rather surprised that one can't simply @yum install@ mod_fastcgi, mod_fcgid, fcgi, etc., but there we are.  If you find better methods or sources for any of the above, please feel free to update.