Project

General

Profile

HowTo install Redmine on CentOS 5 » History » Version 27

Yu Kobayashi, 2012-02-13 08:09

1 27 Yu Kobayashi
h1. HowTo install Redmine on CentOS 5 or 6
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 14 Erwin Baeyens
yum -y install zlib-devel curl-devel openssl-devel httpd-devel apr-devel apr-util-devel mysql-devel
20 6 Gary Wilson
</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 17 Johannes M.
tar zxvf ruby-1.8.7.pXXX.tar.gz
30 1 Serafim J Fagundes
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 18 Johannes M.
h3. Get Gems 1.4.2 (does not work with Gems 1.5)
40 1 Serafim J Fagundes
41 3 Mischa The Evil
<pre>
42 18 Johannes M.
wget http://production.cf.rubygems.org/rubygems/rubygems-1.4.2.tgz
43 19 Johannes M.
tar zxvf rubygems-1.4.2.tgz
44 18 Johannes M.
cd rubygems-1.4.2
45 1 Serafim J Fagundes
ruby setup.rb
46
gem -v
47
which gem
48
cd ..
49 3 Mischa The Evil
</pre>
50 1 Serafim J Fagundes
51 26 Anonymous
h3. Install Passenger (requires gcc)
52 1 Serafim J Fagundes
53 3 Mischa The Evil
<pre>
54
gem install passenger
55 1 Serafim J Fagundes
passenger-install-apache2-module
56
</pre>
57
58 26 Anonymous
An alternate method is to install mod_passenger RPM for Apache from the following location: 
59
http://passenger.stealthymonkeys.com/
60
61
RHEL/CentOS 5
62
<pre>
63
rpm -Uvh http://passenger.stealthymonkeys.com/rhel/5/passenger-release.noarch.rpm
64
yum install mod_passenger
65
</pre>
66
67
RHEL/CentOS 6
68
<pre>
69
rpm --import http://passenger.stealthymonkeys.com/RPM-GPG-KEY-stealthymonkeys.asc
70
yum install http://passenger.stealthymonkeys.com/rhel/6/passenger-release.noarch.rpm
71
yum install mod_passenger
72
</pre>
73
74 8 Erwin Baeyens
h3. Restart Apache
75 1 Serafim J Fagundes
76
<pre>service httpd restart</pre>
77 3 Mischa The Evil
78 1 Serafim J Fagundes
h3. Download Redmine
79
80 26 Anonymous
Download page: http://rubyforge.org/frs/?group_id=1850
81
82 16 Steven Verbeek
<pre>
83 26 Anonymous
wget http://rubyforge.org/frs/download.php/75597/redmine-1.3.0.tar.gz  # GET LATEST VERSION ON RUBYFORGE
84
tar zxvf redmine-1.3.0.tar.gz
85 1 Serafim J Fagundes
</pre>
86
87
h3. Copy the folder to its HTTP document root folder
88 16 Steven Verbeek
89 26 Anonymous
<pre>cp -av redmine-1.3.0/* /var/www/redmine</pre>
90 1 Serafim J Fagundes
91
h3. Configure Apache to host the documents
92 10 Erwin Baeyens
93
more information can be found here: [[HowTo configure Apache to run Redmine]]
94 1 Serafim J Fagundes
95
h3. Install Bundler
96 4 Neil McFarlane
97 1 Serafim J Fagundes
<pre>gem install bundler</pre>
98
99
h3. Add the Bundler Boot and preinitializer code
100 3 Mischa The Evil
101 1 Serafim J Fagundes
For more info go to the "Bundler site":http://gembundler.com/.
102
103
h3. Create the Gemfile and register these gems in it
104 22 Johannes M.
105 8 Erwin Baeyens
<pre>vi /var/www/redmine/Gemfile</pre>
106 20 Johannes M.
107 22 Johannes M.
<pre>
108 20 Johannes M.
# file: /var/www/redmine/Gemfile
109 21 Johannes M.
source "http://rubygems.org"
110
gem "rake", "0.8.3"
111
gem "rack", "1.1.0"
112
gem "i18n", "0.4.2"
113
gem "rubytree", "0.5.2", :require => "tree"
114
gem "RedCloth", "~>4.2.3", :require => "redcloth" # for CodeRay
115
gem "mysql"
116 20 Johannes M.
gem "coderay", "~>0.9.7"
117 1 Serafim J Fagundes
</pre>
118 3 Mischa The Evil
119 1 Serafim J Fagundes
<pre>bundle install</pre>
120
121
h3. Create the Redmine MySQL database
122 23 Johannes M.
123
<pre>
124
yum install mysql-server
125
chkconfig mysqld on
126
service mysqld start
127
/usr/bin/mysql_secure_installation
128
</pre>
129 1 Serafim J Fagundes
130 23 Johannes M.
> For MySQL:
131 11 Erwin Baeyens
> start the mysql client (@mysql -u root -p@) and enter the following commands
132
> > <pre>create database redmine character set utf8;
133
create user 'redmine'@'localhost' identified by 'my_password';
134 10 Erwin Baeyens
grant all privileges on redmine.* to 'redmine'@'localhost'; </pre>
135 11 Erwin Baeyens
136
> For versions of MySQL prior to 5.0.2 - skip the 'create user' step and instead:
137
138 9 Erwin Baeyens
> > <pre> grant all privileges on redmine.* to 'redmine'@'localhost' identified by 'my_password';</pre>
139 24 Johannes M.
140 1 Serafim J Fagundes
h3. Configure /var/www/redmine/config/database.yml (rename database.yml.example)
141
142
h3. Set the production environment (optional)
143 7 Thibault B
144 1 Serafim J Fagundes
Uncomment the following line in file redmine/config/environment.rb:
145 3 Mischa The Evil
146 1 Serafim J Fagundes
<pre>ENV['RAILS_ENV'] ||= 'production'</pre>
147
148
h3. Generate the session store
149 3 Mischa The Evil
150 1 Serafim J Fagundes
<pre>RAILS_ENV=production bundle exec rake generate_session_store</pre>
151
152
h3. Migrate the database models
153 3 Mischa The Evil
154 1 Serafim J Fagundes
<pre>RAILS_ENV=production bundle exec rake db:migrate</pre>
155
156
h3. Load default data (optional)
157 3 Mischa The Evil
158 1 Serafim J Fagundes
<pre>RAILS_ENV=production bundle exec rake redmine:load_default_data</pre>
159
160
Follow instructions.
161 25 Johannes M.
162 1 Serafim J Fagundes
h3. Rename dispatch CGI files in /var/www/redmine/public/
163 3 Mischa The Evil
164
<pre>
165 1 Serafim J Fagundes
mv dispatch.cgi.example dispatch.cgi
166
mv dispatch.fcgi.example dispatch.fcgi
167 3 Mischa The Evil
mv dispatch.rb.example dispatch.rb
168 1 Serafim J Fagundes
</pre>
169
170 5 Mauro Mazzieri
h3. Edit .htaccess file for CGI dispatch configuration
171
172
<pre>
173
mv htaccess.fcgi.example .htaccess
174 1 Serafim J Fagundes
</pre>
175
176
h3. Chown and Chmod files for read/write access for the Apache user
177 3 Mischa The Evil
178
<pre>
179 1 Serafim J Fagundes
cd ..
180
chown -R apache:apache redmine-1.x
181 3 Mischa The Evil
chmod -R 755 redmine-1.x
182 2 Serafim J Fagundes
</pre>
183 1 Serafim J Fagundes
184
h3. Redmine should be fully installed now and fully usable
185
186
Enjoy!