Project

General

Profile

HowTo install Redmine on CentOS 5 » History » Version 44

Stephan Schuberth, 2012-03-27 17:52

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 39 Stephan Schuberth
h1. Assumptions
6 33 Nick Shel
7 34 Nick Shel
* 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 1 Serafim J Fagundes
* Your are logged as root
12
* The next steps are done successively without errors
13 30 Nick Shel
14 40 Stephan Schuberth
h1. Steps to take
15 1 Serafim J Fagundes
16 40 Stephan Schuberth
h2. Install gem and passenger dependencies
17 1 Serafim J Fagundes
18 41 Stephan Schuberth
<pre>yum -y install zlib-devel curl-devel openssl-devel httpd-devel apr-devel apr-util-devel mysql-devel</pre>
19 28 Nick Shel
20 1 Serafim J Fagundes
h2. Get Ruby
21 44 Stephan Schuberth
Things after *#* are comments, and it is no use to type this stuff in ;) 
22 41 Stephan Schuberth
<pre>cd ~/Downloads  # YOUR FOLDER OF CHOICE
23 1 Serafim J Fagundes
ftp ftp.ruby-lang.org
24
</pre>
25 44 Stephan Schuberth
h3. FTP session
26 41 Stephan Schuberth
<pre>ftp> Anonymous  # USERLOGIN
27 1 Serafim J Fagundes
ftp> 'none', just hit Enter  # NO PASSWORD
28
ftp> cd /pub/ruby
29
ftp> get ruby-1.8.7.pXXX.tar.gz  # XXX is currently 358, as of 03/2012
30 41 Stephan Schuberth
ftp> bye</pre>
31 44 Stephan Schuberth
h3. Unzip
32 41 Stephan Schuberth
<pre>tar zxvf ruby-1.8.7.pXXX.tar.gz</pre>
33 44 Stephan Schuberth
h3. Install
34 41 Stephan Schuberth
<pre>cd ruby-1.8.7.pXXX
35 1 Serafim J Fagundes
./configure
36
make
37 41 Stephan Schuberth
make install</pre>
38 44 Stephan Schuberth
h3. Check Installation
39 43 Stephan Schuberth
<pre>ruby -v</pre>
40 1 Serafim J Fagundes
If this doesnt work, it is maybe because there is no ruby at /usr/bin to be found:
41
42 44 Stephan Schuberth
h3. In case of _ruby -v_ is not working, create a symlink
43 43 Stephan Schuberth
<pre>which ruby  # TO CHECK WHERE IT SHOULD BE
44
whereis ruby  # TO CHECK WHERE IT IS INSTALLED</pre>
45
If _which_ returns like /usr/bin/ along with other directories, and _whereis_ returns like /usr/local/bin/ruby (thats where ruby lies), create a symbolic link:
46 42 Stephan Schuberth
<pre>ln -s /usr/local/bin/ruby /usr/bin/ruby</pre>
47 43 Stephan Schuberth
ruby -v # NOW IT MUST RETURN RUBY VERSION, ELSE SOMETHING ELSE IS BROKEN
48 41 Stephan Schuberth
cd ..</pre>
49 38 Stephan Schuberth
50 40 Stephan Schuberth
h2. Get Gems 1.4.2 (does not work with Gems 1.5)
51 1 Serafim J Fagundes
52 41 Stephan Schuberth
<pre>wget http://production.cf.rubygems.org/rubygems/rubygems-1.4.2.tgz
53 1 Serafim J Fagundes
tar zxvf rubygems-1.4.2.tgz
54
cd rubygems-1.4.2
55
ruby setup.rb
56
gem -v
57
which gem
58 41 Stephan Schuberth
cd ..</pre>
59 3 Mischa The Evil
60 1 Serafim J Fagundes
h2. Install Passenger (requires gcc)
61
62 41 Stephan Schuberth
<pre>gem install passenger
63
passenger-install-apache2-module</pre>
64 26 Anonymous
65
An alternate method is to install mod_passenger RPM for Apache from the following location: 
66
http://passenger.stealthymonkeys.com/
67
68
RHEL/CentOS 5
69 41 Stephan Schuberth
<pre>rpm -Uvh http://passenger.stealthymonkeys.com/rhel/5/passenger-release.noarch.rpm
70
yum install mod_passenger</pre>
71 26 Anonymous
72 1 Serafim J Fagundes
RHEL/CentOS 6
73 41 Stephan Schuberth
<pre>rpm --import http://passenger.stealthymonkeys.com/RPM-GPG-KEY-stealthymonkeys.asc
74 26 Anonymous
yum install http://passenger.stealthymonkeys.com/rhel/6/passenger-release.noarch.rpm
75 41 Stephan Schuberth
yum install mod_passenger</pre>
76 26 Anonymous
77 40 Stephan Schuberth
h2. Restart Apache
78 1 Serafim J Fagundes
79
<pre>service httpd restart</pre>
80
81
h2. Download Redmine
82 3 Mischa The Evil
83 40 Stephan Schuberth
Download page: http://rubyforge.org/frs/?group_id=1850
84 1 Serafim J Fagundes
85 41 Stephan Schuberth
<pre>wget http://rubyforge.org/frs/download.php/75597/redmine-1.3.0.tar.gz  # GET LATEST VERSION ON RUBYFORGE
86
tar zxvf redmine-1.3.0.tar.gz</pre>
87 16 Steven Verbeek
88 1 Serafim J Fagundes
h2. Copy the folder to its HTTP document root folder
89
90 40 Stephan Schuberth
<pre>cp -av redmine-1.3.0/* /var/www/redmine</pre>
91 16 Steven Verbeek
92 26 Anonymous
h2. Configure Apache to host the documents
93 1 Serafim J Fagundes
94 40 Stephan Schuberth
more information can be found here: [[HowTo configure Apache to run Redmine]]
95 1 Serafim J Fagundes
96 40 Stephan Schuberth
h2. Install Bundler
97 4 Neil McFarlane
98 1 Serafim J Fagundes
<pre>gem install bundler</pre>
99
100
h2. Add the Bundler Boot and preinitializer code
101
102 8 Erwin Baeyens
For more info go to the "Bundler site":http://gembundler.com/.
103 20 Johannes M.
104 22 Johannes M.
h2. Create the Gemfile and register these gems in it
105 20 Johannes M.
106 21 Johannes M.
<pre>vi /var/www/redmine/Gemfile</pre>
107
108 41 Stephan Schuberth
<pre># 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 20 Johannes M.
gem "rubytree", "0.5.2", :require => "tree"
114 1 Serafim J Fagundes
gem "RedCloth", "~>4.2.3", :require => "redcloth" # for CodeRay
115 3 Mischa The Evil
gem "mysql"
116 41 Stephan Schuberth
gem "coderay", "~>0.9.7"</pre>
117 1 Serafim J Fagundes
118 40 Stephan Schuberth
<pre>bundle install</pre>
119 23 Johannes M.
120
h2. Create the Redmine MySQL database
121
122 41 Stephan Schuberth
<pre>yum install mysql-server
123 23 Johannes M.
chkconfig mysqld on
124
service mysqld start
125 41 Stephan Schuberth
/usr/bin/mysql_secure_installation</pre>
126 1 Serafim J Fagundes
127 23 Johannes M.
> For MySQL:
128 11 Erwin Baeyens
> start the mysql client (@mysql -u root -p@) and enter the following commands
129
> > <pre>create database redmine character set utf8;
130
create user 'redmine'@'localhost' identified by 'my_password';
131 10 Erwin Baeyens
grant all privileges on redmine.* to 'redmine'@'localhost'; </pre>
132 11 Erwin Baeyens
133
> For versions of MySQL prior to 5.0.2 - skip the 'create user' step and instead:
134
135 9 Erwin Baeyens
> > <pre> grant all privileges on redmine.* to 'redmine'@'localhost' identified by 'my_password';</pre>
136 24 Johannes M.
137 40 Stephan Schuberth
h2. Configure /var/www/redmine/config/database.yml (rename database.yml.example)
138 1 Serafim J Fagundes
139 40 Stephan Schuberth
h2. Set the production environment (optional)
140 7 Thibault B
141 1 Serafim J Fagundes
Uncomment the following line in file redmine/config/environment.rb:
142 3 Mischa The Evil
143 1 Serafim J Fagundes
<pre>ENV['RAILS_ENV'] ||= 'production'</pre>
144
145 40 Stephan Schuberth
h2. Generate the session store
146 3 Mischa The Evil
147 1 Serafim J Fagundes
<pre>RAILS_ENV=production bundle exec rake generate_session_store</pre>
148
149 40 Stephan Schuberth
h2. Migrate the database models
150 3 Mischa The Evil
151 1 Serafim J Fagundes
<pre>RAILS_ENV=production bundle exec rake db:migrate</pre>
152
153 40 Stephan Schuberth
h2. Load default data (optional)
154 3 Mischa The Evil
155 1 Serafim J Fagundes
<pre>RAILS_ENV=production bundle exec rake redmine:load_default_data</pre>
156
157
Follow instructions.
158 25 Johannes M.
159 40 Stephan Schuberth
h2. Rename dispatch CGI files in /var/www/redmine/public/
160 3 Mischa The Evil
161
<pre>
162 1 Serafim J Fagundes
mv dispatch.cgi.example dispatch.cgi
163
mv dispatch.fcgi.example dispatch.fcgi
164 3 Mischa The Evil
mv dispatch.rb.example dispatch.rb
165 1 Serafim J Fagundes
</pre>
166
167 40 Stephan Schuberth
h2. Edit .htaccess file for CGI dispatch configuration
168 5 Mauro Mazzieri
169
<pre>
170
mv htaccess.fcgi.example .htaccess
171 1 Serafim J Fagundes
</pre>
172
173 40 Stephan Schuberth
h2. Chown and Chmod files for read/write access for the Apache user
174 3 Mischa The Evil
175
<pre>
176 1 Serafim J Fagundes
cd ..
177
chown -R apache:apache redmine-1.x
178 3 Mischa The Evil
chmod -R 755 redmine-1.x
179 2 Serafim J Fagundes
</pre>
180 1 Serafim J Fagundes
181 40 Stephan Schuberth
h2. Redmine should be fully installed now and fully usable
182 1 Serafim J Fagundes
183
Enjoy!