Redmine on CentOS installation HOWTO » History » Version 52
Mr. DTTH, 2013-02-28 04:18
1 | 1 | Stephan Schuberth | h1. Redmine on CentOS installation HOWTO |
---|---|---|---|
2 | |||
3 | This works with CentOS versions 5 and 6 and describes how to get Redmine 1.3.2 set up. |
||
4 | 49 | Baeg-il Kim | |
5 | {{toc}} |
||
6 | 1 | Stephan Schuberth | |
7 | h2. Assumptions |
||
8 | |||
9 | * Apache is up and running |
||
10 | * Apache has previously been used and works quite well |
||
11 | * MySQL is up and running |
||
12 | * MySQL has previously been used and works quite well |
||
13 | * Your are logged as root |
||
14 | * The next steps are done successively without errors |
||
15 | 25 | Stephan Schuberth | * You can of course use vi/vim as your editor of choice instead of nano, if you know what you are doing. ;) |
16 | 1 | Stephan Schuberth | |
17 | h1. Install pre-dependencies |
||
18 | |||
19 | <pre>yum -y install zlib-devel curl-devel openssl-devel httpd-devel apr-devel apr-util-devel mysql-devel</pre> |
||
20 | |||
21 | 50 | Mr. DTTH | h2. Install Ruby (Option 1) |
22 | 1 | Stephan Schuberth | |
23 | Things after *#* are comments, and it is no use to type this stuff in ;) |
||
24 | <pre>cd ~/Downloads # YOUR FOLDER OF CHOICE |
||
25 | ftp ftp.ruby-lang.org |
||
26 | </pre> |
||
27 | |||
28 | h3. FTP session |
||
29 | |||
30 | <pre>ftp> Anonymous # USERLOGIN |
||
31 | ftp> 'none', just hit Enter # NO PASSWORD |
||
32 | ftp> cd /pub/ruby |
||
33 | ftp> get ruby-1.8.7.pXXX.tar.gz # XXX is currently 358, as of 03/2012 |
||
34 | ftp> bye</pre> |
||
35 | |||
36 | h3. Untar |
||
37 | |||
38 | <pre>tar zxvf ruby-1.8.7.pXXX.tar.gz</pre> |
||
39 | |||
40 | h3. Install |
||
41 | |||
42 | <pre>cd ruby-1.8.7.pXXX |
||
43 | ./configure |
||
44 | make |
||
45 | make install</pre> |
||
46 | |||
47 | h3. Check installation |
||
48 | |||
49 | If this does not work, it is probably because there is no ruby at /usr/bin to be found. |
||
50 | <pre>ruby -v</pre> |
||
51 | 22 | Stephan Schuberth | If it works, skip directly to "RubyGems 1.4.2". |
52 | |||
53 | 1 | Stephan Schuberth | |
54 | 6 | Stephan Schuberth | h3. Fix dependencies |
55 | 1 | Stephan Schuberth | |
56 | (Only in case _ruby -v_ is *NOT* working) |
||
57 | <pre>which ruby # TO CHECK WHERE IT SHOULD BE |
||
58 | whereis ruby # TO CHECK WHERE IT IS INSTALLED</pre> |
||
59 | _which_ returns like /usr/bin/ along with other directories (where ruby is expected to be), and _whereis_ returns like /usr/local/bin/ruby (thats where ruby actually lies). |
||
60 | |||
61 | 6 | Stephan Schuberth | h4. Fix via adding /usr/local/bin to $PATH |
62 | |||
63 | 9 | Stephan Schuberth | (Do this with your editor of choice, if you do not like nano.) |
64 | 6 | Stephan Schuberth | <pre>nano /etc/profile</pre> |
65 | |||
66 | Make the section with _pathmunge_ look alike like this: |
||
67 | <pre>#Path manupulation |
||
68 | if [ "$EUID" = "0" ]; then |
||
69 | pathmunge /sbin |
||
70 | pathmunge /usr/sbin |
||
71 | pathmunge /usr/local/sbin |
||
72 | pathmunge /usr/local/bin # ADDED THIS |
||
73 | else |
||
74 | pathmunge /usr/local/bin after # ADDED THIS |
||
75 | pathmunge /usr/local/sbin after |
||
76 | pathmunge /usr/sbin after |
||
77 | pathmunge /sbin |
||
78 | fi</pre> |
||
79 | |||
80 | OR ADD THIS AT THE END OF THE FILE: |
||
81 | |||
82 | <pre>nano /etc/profile |
||
83 | export PATH="$PATH:/usr/local/bin"</pre> |
||
84 | |||
85 | 15 | Stephan Schuberth | This sets the PATH for all Users beside root. For this setup you want to change the PATH for root, too: |
86 | 6 | Stephan Schuberth | |
87 | <pre>nano ~/.bashrc |
||
88 | 1 | Stephan Schuberth | export PATH="$PATH:/usr/local/bin"</pre> |
89 | 15 | Stephan Schuberth | |
90 | Logout your user and login again, to make the changes work. |
||
91 | 6 | Stephan Schuberth | |
92 | h4. Fix via Symlink Creation |
||
93 | |||
94 | 42 | Stephan Schuberth | This is not recommended, since if the ruby dependency is broken, others will likely be later on, too. Repair this by adding the folder to the $PATH variable like described before, else _gem_, _rake_, _bundle_, _passenger-install-apache2-module_ will not work either... you would have to create symlinks for them later on, too. |
95 | 6 | Stephan Schuberth | Symlinks are created like this |
96 | |||
97 | 1 | Stephan Schuberth | <pre>ln -s /usr/local/bin/ruby /usr/bin/ruby</pre> |
98 | 6 | Stephan Schuberth | |
99 | 8 | Stephan Schuberth | h4. Verify ruby to be working |
100 | 6 | Stephan Schuberth | |
101 | 16 | Stephan Schuberth | <pre>which ruby # MUST RETURN PATH TO RUBY |
102 | ruby -v # MUST RETURN RUBY VERSION |
||
103 | 1 | Stephan Schuberth | cd ..</pre> |
104 | 16 | Stephan Schuberth | |
105 | 19 | Stephan Schuberth | Now it has to work. When changing $PATH variable, did you log out and log on again with your current user? |
106 | 1 | Stephan Schuberth | If this does not function properly, other things later on will also not work. |
107 | 50 | Mr. DTTH | |
108 | h2. Install Ruby (Option 2) |
||
109 | |||
110 | Install Ruby use "RMV":https://rvm.io/rvm/install/ for lastest version ruby |
||
111 | |||
112 | 51 | Mr. DTTH | <pre>$ \curl -L https://get.rvm.io | bash -s stable --ruby</pre> |
113 | 50 | Mr. DTTH | |
114 | Or, if you need older-version,Install a version of Ruby (eg 1.9.2): |
||
115 | |||
116 | <pre> |
||
117 | rvm install 1.9.2 |
||
118 | Installing Ruby from source to: /Users/user/.rvm/rubies/ruby-1.9.2-p180, this may take a while depending on your cpu(s)... |
||
119 | |||
120 | ruby-1.9.2-p180 - #fetching |
||
121 | ruby-1.9.2-p180 - #downloading ruby-1.9.2-p180, this may take a while depending on your connection... |
||
122 | ... |
||
123 | ruby-1.9.2-p180 - #extracting ruby-1.9.2-p180 to /Users/user/.rvm/src/ruby-1.9.2-p180 |
||
124 | ruby-1.9.2-p180 - #extracted to /Users/user/.rvm/src/ruby-1.9.2-p180 |
||
125 | ruby-1.9.2-p180 - #configuring |
||
126 | ruby-1.9.2-p180 - #compiling |
||
127 | ruby-1.9.2-p180 - #installing |
||
128 | </pre> |
||
129 | |||
130 | Use the newly installed Ruby: |
||
131 | |||
132 | <pre> |
||
133 | $ rvm use 1.9.2 |
||
134 | Using /Users/user/.rvm/gems/ruby-1.9.2-p180 |
||
135 | </pre> |
||
136 | |||
137 | Check this worked correctly: |
||
138 | |||
139 | <pre> |
||
140 | user$ ruby -v |
||
141 | ruby 1.9.2p180 (2011-02-18 revision 30909) [i386-darwin9.8.0] |
||
142 | |||
143 | user$ which ruby |
||
144 | Using /Users/user/.rvm/gems/ruby-1.9.2-p180/bin/ruby |
||
145 | </pre> |
||
146 | 1 | Stephan Schuberth | |
147 | h2. RubyGems 1.4.2 |
||
148 | |||
149 | *Does not work with Gems 1.5!* |
||
150 | |||
151 | h3. Download |
||
152 | |||
153 | <pre>wget http://production.cf.rubygems.org/rubygems/rubygems-1.4.2.tgz</pre> |
||
154 | |||
155 | h3. Untar |
||
156 | |||
157 | <pre>tar zxvf rubygems-1.4.2.tgz</pre> |
||
158 | |||
159 | h3. Setup |
||
160 | |||
161 | <pre>cd rubygems-1.4.2 |
||
162 | ruby setup.rb</pre> |
||
163 | |||
164 | h3. Check installation |
||
165 | |||
166 | <pre>gem -v</pre> |
||
167 | |||
168 | 21 | Stephan Schuberth | h3. Do things work? |
169 | 1 | Stephan Schuberth | |
170 | 21 | Stephan Schuberth | ... else the cause is the same as with the ruby problem before... |
171 | 1 | Stephan Schuberth | |
172 | h2. Passenger |
||
173 | |||
174 | h3. Regular install method |
||
175 | |||
176 | 44 | Alex Tremblay | Requires C++ compiler to complete. |
177 | Note: in some CentOS-like linux distros (RHEL, Amazon Linux) the C++ compiler does not come as part of the GCC compiler package. If that's the case, it can be installed with the following command: |
||
178 | <pre>yum install gcc-c++</pre> |
||
179 | 1 | Stephan Schuberth | |
180 | <pre>gem install passenger |
||
181 | passenger-install-apache2-module</pre> |
||
182 | |||
183 | 14 | Stephan Schuberth | The install process is interactive and you wil be told what to do. How to install missing dependencies is described exactly. JUST READ! |
184 | 1 | Stephan Schuberth | |
185 | h3. Alternative install method |
||
186 | |||
187 | Install mod_passenger RPM for Apache from the following location: |
||
188 | |||
189 | > http://passenger.stealthymonkeys.com/ |
||
190 | |||
191 | _RHEL/CentOS 5_ |
||
192 | <pre>rpm -Uvh http://passenger.stealthymonkeys.com/rhel/5/passenger-release.noarch.rpm |
||
193 | yum install mod_passenger</pre> |
||
194 | |||
195 | _RHEL/CentOS 6_ |
||
196 | <pre>rpm --import http://passenger.stealthymonkeys.com/RPM-GPG-KEY-stealthymonkeys.asc |
||
197 | yum install http://passenger.stealthymonkeys.com/rhel/6/passenger-release.noarch.rpm |
||
198 | yum install mod_passenger</pre> |
||
199 | |||
200 | h2. Restart Apache |
||
201 | |||
202 | <pre>service httpd restart</pre> |
||
203 | |||
204 | h1. Install Redmine |
||
205 | |||
206 | 52 | Mr. DTTH | h2. Checkout from SVN (Recommended) |
207 | |||
208 | <pre> |
||
209 | $ cd /var/www |
||
210 | $ svn co http://svn.redmine.org/redmine/branches/2.3-stable redmine |
||
211 | </pre> |
||
212 | |||
213 | h2. Or Download |
||
214 | 1 | Stephan Schuberth | |
215 | Download page: |
||
216 | > http://rubyforge.org/frs/?group_id=1850 |
||
217 | |||
218 | <pre>wget http://rubyforge.org/frs/download.php/75910/redmine-1.3.2.tar.gz # GET LATEST VERSION ON RUBYFORGE</pre> |
||
219 | |||
220 | h3. Untar |
||
221 | |||
222 | <pre>tar zxvf redmine-1.3.2.tar.gz</pre> |
||
223 | |||
224 | h3. Copy the folder to its HTTP document root folder |
||
225 | |||
226 | <pre>mkdir /var/www/redmine |
||
227 | cp -av redmine-1.3.2/* /var/www/redmine</pre> |
||
228 | |||
229 | 13 | Stephan Schuberth | h1. Link Redmine to the Database |
230 | |||
231 | h2. Install MySQL DB Server |
||
232 | |||
233 | <pre>yum install mysql-server |
||
234 | chkconfig mysqld on |
||
235 | service mysqld start |
||
236 | /usr/bin/mysql_secure_installation</pre> |
||
237 | |||
238 | h2. Create a MySQL database to use with Redmine |
||
239 | |||
240 | 41 | Stephan Schuberth | Start the mysql client: |
241 | <pre>mysql -u root -p</pre> |
||
242 | The version you have is shown in the welcome message. |
||
243 | Enter the following commands in the mysql console: (without repeating the prompt ;) ) |
||
244 | <pre>mysql> create database redmine character set utf8;</pre> |
||
245 | 25 | Stephan Schuberth | |
246 | 13 | Stephan Schuberth | h3. Latest MySQL Version |
247 | 1 | Stephan Schuberth | |
248 | 41 | Stephan Schuberth | <pre>mysql> create user 'redmine'@'localhost' identified by 'my_password'; |
249 | mysql> grant all privileges on redmine.* to 'redmine'@'localhost'; |
||
250 | mysql> \q</pre> |
||
251 | 1 | Stephan Schuberth | |
252 | h3. For versions of MySQL prior to 5.0.2 |
||
253 | |||
254 | 25 | Stephan Schuberth | Skip the 'create user' step and do instead: |
255 | 41 | Stephan Schuberth | <pre>mysql> grant all privileges on redmine.* to 'redmine'@'localhost' identified by 'my_password'; |
256 | mysql> \q</pre> |
||
257 | 13 | Stephan Schuberth | |
258 | 25 | Stephan Schuberth | Now the database and a user to be used with it is created. Also the user has the rights to work on the database that was created. |
259 | 13 | Stephan Schuberth | |
260 | 25 | Stephan Schuberth | h2. Configure database.yml |
261 | 13 | Stephan Schuberth | |
262 | 29 | Stephan Schuberth | There you have to enter the user:password combination (redmine:my_password) in the config file, so Redmine can actually talk to the database (redmine). |
263 | 25 | Stephan Schuberth | |
264 | 27 | Stephan Schuberth | <pre>cd /var/www/redmine/config |
265 | 28 | Stephan Schuberth | cp database.yml.example database.yml |
266 | nano database.yml</pre> |
||
267 | 1 | Stephan Schuberth | |
268 | 27 | Stephan Schuberth | Change it to look like: |
269 | <pre>production: |
||
270 | adapter: mysql |
||
271 | database: redmine |
||
272 | host: localhost |
||
273 | username: redmine |
||
274 | password: my_password |
||
275 | encoding: utf8</pre> |
||
276 | |||
277 | 31 | Stephan Schuberth | The other entries are not important, since we will use only the production environment. But if you would need the development or test environment, don't forget the create additional databases. *Don't* use the same database for production and testing or development environment! |
278 | 1 | Stephan Schuberth | |
279 | h1. Rails Settings |
||
280 | |||
281 | h2. Dependency management with bundler |
||
282 | |||
283 | For more info go to the "bundler site":http://gembundler.com/. |
||
284 | |||
285 | h3. Install |
||
286 | |||
287 | 46 | Marek Grossman | <pre>gem install bundler</pre> |
288 | or if You have a problem try |
||
289 | <pre>gem install bundler --verbose</pre> |
||
290 | |||
291 | * Error: /usr/local/bin/ruby: symbol lookup error: /usr/local/lib/ruby/site_ruby/1.8/x86_64-linux/zlib.so: undefined symbol: RB_GC_GUARD |
||
292 | <pre> |
||
293 | 48 | Marek Grossman | wget http://www.blue.sky.or.jp/atelier/ruby/ruby-zlib-0.6.0.tar.gz |
294 | 46 | Marek Grossman | tar xvzf ruby-zlib-0.6.0.tar.gz |
295 | cd ruby-zlib-0.6.0 |
||
296 | ruby extconf.rb && make && make install |
||
297 | </pre> |
||
298 | |||
299 | 1 | Stephan Schuberth | h3. Create Gemfile |
300 | |||
301 | <pre>nano /var/www/redmine/Gemfile</pre> |
||
302 | |||
303 | h3. Register gems |
||
304 | |||
305 | Put the following into the file you just opened: |
||
306 | <pre># file: /var/www/redmine/Gemfile |
||
307 | source "http://rubygems.org" |
||
308 | gem "rake", "0.8.3" |
||
309 | gem "rack", "1.1.0" |
||
310 | gem "i18n", "0.4.2" |
||
311 | gem "rubytree", "0.5.2", :require => "tree" |
||
312 | gem "RedCloth", "~>4.2.3", :require => "redcloth" # for CodeRay |
||
313 | gem "mysql" |
||
314 | gem "coderay", "~>0.9.7"</pre> |
||
315 | Save and exit the editor. |
||
316 | 20 | Stephan Schuberth | |
317 | 1 | Stephan Schuberth | h3. Install the provided dependencies |
318 | 10 | Stephan Schuberth | |
319 | <pre>cd /var/www/redmine |
||
320 | 1 | Stephan Schuberth | bundle install</pre> |
321 | 12 | Stephan Schuberth | |
322 | h2. Set environment to "production" |
||
323 | |||
324 | Rails has the concept of environments to represent the stages of an application’s lifecycle: test, development, and production by default. |
||
325 | Specify your choice with the RAILS_ENV environment variable. |
||
326 | Production has less verbose logging and is a bit faster, testing and development environment are not needed anyway for your Redmine. |
||
327 | |||
328 | 32 | Stephan Schuberth | <pre>nano /var/www/redmine/config/environment.rb</pre> |
329 | |||
330 | 33 | Stephan Schuberth | Uncomment the following line at top of the file: |
331 | 12 | Stephan Schuberth | |
332 | <pre>ENV['RAILS_ENV'] ||= 'production'</pre> |
||
333 | |||
334 | h2. Generate the session store |
||
335 | |||
336 | 40 | Stephan Schuberth | (In the terminal again...) |
337 | 12 | Stephan Schuberth | <pre>RAILS_ENV=production bundle exec rake generate_session_store</pre> |
338 | |||
339 | h2. Migrate the database models |
||
340 | |||
341 | <pre>RAILS_ENV=production bundle exec rake db:migrate</pre> |
||
342 | |||
343 | h2. Load default data (optional) |
||
344 | |||
345 | <pre>RAILS_ENV=production bundle exec rake redmine:load_default_data</pre> |
||
346 | |||
347 | Follow instructions. |
||
348 | |||
349 | 34 | Stephan Schuberth | h2. Rename dispatch CGI files in /redmine/public/ |
350 | 12 | Stephan Schuberth | |
351 | 34 | Stephan Schuberth | <pre>cd /var/www/redmine/public |
352 | 35 | Stephan Schuberth | cp dispatch.cgi.example dispatch.cgi |
353 | cp dispatch.fcgi.example dispatch.fcgi |
||
354 | cp dispatch.rb.example dispatch.rb</pre> |
||
355 | 1 | Stephan Schuberth | |
356 | 11 | Stephan Schuberth | h1. Apache Settings |
357 | |||
358 | h2. Configure Apache to host the documents |
||
359 | |||
360 | 1 | Stephan Schuberth | more information can be found here: [[HowTo configure Apache to run Redmine]] |
361 | |||
362 | h2. Edit .htaccess file for CGI dispatch configuration |
||
363 | |||
364 | 36 | Stephan Schuberth | <pre>cd /var/www/redmine/public |
365 | 37 | Stephan Schuberth | cp htaccess.fcgi.example .htaccess</pre> |
366 | 1 | Stephan Schuberth | |
367 | h2. Fix rights for the apache user |
||
368 | |||
369 | <pre> |
||
370 | 38 | Stephan Schuberth | cd /var/www |
371 | 39 | Stephan Schuberth | chown -R apache:apache redmine |
372 | chmod -R 755 redmine |
||
373 | 1 | Stephan Schuberth | </pre> |
374 | |||
375 | |||
376 | |||
377 | |||
378 | |||
379 | |||
380 | This should be everything. |
||
381 | 5 | Stephan Schuberth | |
382 | |||
383 | 1 | Stephan Schuberth | *Redmine is now installed and usable.* |
384 | |||
385 | *Enjoy!* |