User Tools

Site Tools


project_management:redmine

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
project_management:redmine [2011/01/17 08:24] aorthproject_management:redmine [2011/01/26 14:04] aorth
Line 7: Line 7:
  
 ===== Install dependencies ===== ===== Install dependencies =====
-==== aptitude ==== +==== apt-get ==== 
-<code># aptitude install build-essential rake ruby1.8 ruby1.8-dev irb1.8 rdoc1.8 zlib1g-dev libopenssl-ruby1.8 libzlib-ruby libssl-dev rubygems1.8</code>+<code># apt-get install build-essential ruby rubygems libopenssl-ruby libopenssl-ruby libsqlite3-dev</code>
  
-==== Download ruby gems ==== +==== Ruby gems ====
-Problems I faced: +
-  * DNS is screwed up for rubyforge.org and rubygems.org. +
-  * rubyforge.org has old versions of some gems (rails!) +
- +
-You SHOULD be able to ''gem install'' the modules, but I downloaded them all manually and installed manually.  It turns out it was a DNS issue, and I had to add some entries to the machine's ///etc/hosts// file: +
-<file>216.137.39.169  production.cf.rubygems.org d2chzxaqi4y7f8.cloudfront.net +
-72.21.202.165   production.s3.rubygems.org</file> +
-Don't ask.  I guess they are using the "cloud" and Amazon to host the files.  I found these IPs from doing DNS queries outside ILRI. +
- +
-<code>$ wget http://rubygems.org/downloads/rack-1.0.1.gem +
-$ wget http://rubygems.org/downloads/rails-2.3.5.gem +
-$ wget http://rubygems.org/downloads/mysql-2.8.1.gem +
-$ wget http://rubygems.org/downloads/sqlite3-ruby-1.3.0.gem +
-$ wget http://rubygems.org/downloads/rake-0.8.7.gem +
-$ wget http://rubygems.org/downloads/fastthread-1.0.7.gem</code> +
- +
-==== Install gems ====+
 Rake, for building gems: Rake, for building gems:
-<code>gem install rake-0.8.3.gem</code> +<code>$ sudo gem install rails -v=2.3.5 
-Make sure you can execute the ''rake'' binary: +$ sudo gem install sqlite3 
-<code># cd /usr/local/bin/ +$ sudo gem install fastthread 
-# ln -s /var/lib/gems/1.8/bin/rake</code> +$ sudo gem install -v=0.4.2 i18n</code>
-Continue installing gems: +
-<code># gem install rack-1.0.1.gem +
-gem install fastthread-1.0.7.gem +
-gem install mysql-2.8.1.gem +
-# gem install sqlite3-ruby-1.3.0.gem +
-# gem install rails-2.3.5.gem</code>+
  
 ===== Configure Redmine ===== ===== Configure Redmine =====