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