Project

General

Profile

HowTo install Redmine on CentOS 5 » History » Version 9

Erwin Baeyens, 2011-09-16 17:00

1 3 Mischa The Evil
h1. HowTo install Redmine on CentOS 5
2 1 Serafim J Fagundes
3 3 Mischa The Evil
{{>toc}}
4
5
h2. Assumptions
6
7 1 Serafim J Fagundes
* Apache is up and running
8
* Apache has previously been used and works quite well 
9
* MySQL is up and running
10
* MySQL has previously been used and works quite well
11
* Your are logged as root
12
* The next steps are done successively without errors
13
14 3 Mischa The Evil
h2. Steps to take
15
16 6 Gary Wilson
h3. Install gem and passenger dependencies
17
18
<pre>
19
yum -y install zlib-devel curl-devel openssl-devel httpd-devel apr-devel apr-util-devel
20
</pre>
21
22 1 Serafim J Fagundes
h3. Get Ruby
23
24 3 Mischa The Evil
<pre>
25
cd ~/Downloads  # YOUR FOLDER OF CHOICE
26 1 Serafim J Fagundes
ftp ftp.ruby-lang.org
27
cd /pub/ruby
28
get ruby-1.8.7.pXXX.tar.gz
29
tar zxvf ruby-1.8.7.pXXX.tar.gz ruby-1.8.7.pXXX
30
cd ruby-1.8.7.pXXX
31
./configure
32
make
33
make install
34
ruby -v
35
which ruby
36
cd ..
37 3 Mischa The Evil
</pre>
38 1 Serafim J Fagundes
39 5 Mauro Mazzieri
h3. Get Gems 1.4 (does not work with Gems 1.5)
40 1 Serafim J Fagundes
41 3 Mischa The Evil
<pre>
42
wget http://production.cf.rubygems.org/rubygems/rubygems-1.x.tgz
43 1 Serafim J Fagundes
tar zxvf rubygems-1.x.tgz rubygems-1.x
44
cd rubygems-1.x
45
ruby setup.rb
46
gem -v
47
which gem
48
cd ..
49 3 Mischa The Evil
</pre>
50 1 Serafim J Fagundes
51
h3. Install Passenger
52
53 3 Mischa The Evil
<pre>
54
gem install passenger
55 1 Serafim J Fagundes
passenger-install-apache2-module
56 3 Mischa The Evil
</pre>
57 1 Serafim J Fagundes
58
h3. Restart Apache
59
60 8 Erwin Baeyens
<pre>service httpd restart</pre>
61
62 1 Serafim J Fagundes
h3. Download Redmine
63
64 3 Mischa The Evil
<pre>
65
wget http://rubyforge.org/frs/download.php/73692/redmine-1.x.tar.gz  # GET LATEST VERSION ON RUBYFORGE
66 1 Serafim J Fagundes
tar zxvf redmine-1.x.tar.gz redmine-1.x
67 3 Mischa The Evil
</pre>
68 1 Serafim J Fagundes
69
h3. Copy the folder to its HTTP document root folder
70
71 8 Erwin Baeyens
<pre>cp -av redmine-1.x/* /var/www/redmine-1.x</pre>
72 1 Serafim J Fagundes
73
h3. Configure Apache to host the documents
74
75
h3. Install Bundler
76
77 4 Neil McFarlane
<pre>gem install bundler</pre>
78 1 Serafim J Fagundes
79
h3. Add the Bundler Boot and preinitializer code
80
81 3 Mischa The Evil
For more info go to the "Bundler site":http://gembundler.com/.
82 1 Serafim J Fagundes
83
h3. Create the Gemfile and register these gems in it
84
85 8 Erwin Baeyens
<pre> cd /var/www/redmine-1.x/
86
touch Gemfile
87
vi gemfile
88
</pre>
89
90
* source "http://rubygems.org"
91
* gem @"rake"@, "0.8.3"
92
* gem @"rack"@, "1.0.1"
93
* gem @"i18n"@, "0.4.2"
94
* gem @"rubytree"@, "0.5.2", :require => "tree"
95
* gem @"RedCloth"@, "~>4.2.3", :require => "redcloth" # for CodeRay
96
* gem @"mysql"@
97
* gem @"coderay"@, "~>0.9.7"
98 1 Serafim J Fagundes
99 3 Mischa The Evil
<pre>bundle install</pre>
100 1 Serafim J Fagundes
101
h3. Create the Redmine MySQL database
102
103 9 Erwin Baeyens
more information can be found here: [[HowTo configure Apache to run Redmine]]
104
105 1 Serafim J Fagundes
h3. Configure database.yml (rename database.yml.example)
106
107
h3. Set the production environment (optional)
108
109 7 Thibault B
Uncomment the following line in file redmine/config/environment.rb:
110 1 Serafim J Fagundes
111 3 Mischa The Evil
<pre>ENV['RAILS_ENV'] ||= 'production'</pre>
112 1 Serafim J Fagundes
113
h3. Generate the session store
114
115 3 Mischa The Evil
<pre>RAILS_ENV=production bundle exec rake generate_session_store</pre>
116 1 Serafim J Fagundes
117
h3. Migrate the database models
118
119 3 Mischa The Evil
<pre>RAILS_ENV=production bundle exec rake db:migrate</pre>
120 1 Serafim J Fagundes
121
h3. Load default data (optional)
122
123 3 Mischa The Evil
<pre>RAILS_ENV=production bundle exec rake redmine:load_default_data</pre>
124 1 Serafim J Fagundes
125
Follow instructions.
126
127
h3. Rename dispatch CGI files
128
129 3 Mischa The Evil
<pre>
130
mv dispatch.cgi.example dispatch.cgi
131 1 Serafim J Fagundes
mv dispatch.fcgi.example dispatch.fcgi
132
mv dispatch.rb.example dispatch.rb
133 3 Mischa The Evil
</pre>
134 1 Serafim J Fagundes
135
h3. Edit .htaccess file for CGI dispatch configuration
136 5 Mauro Mazzieri
137
<pre>
138
mv htaccess.fcgi.example .htaccess
139
</pre>
140 1 Serafim J Fagundes
141
h3. Chown and Chmod files for read/write access for the Apache user
142
143 3 Mischa The Evil
<pre>
144
cd ..
145 1 Serafim J Fagundes
chown -R apache:apache redmine-1.x
146
chmod -R 755 redmine-1.x
147 3 Mischa The Evil
</pre>
148 2 Serafim J Fagundes
149 1 Serafim J Fagundes
h3. Redmine should be fully installed now and fully usable
150
151
Enjoy!