User Tools

Site Tools


tutorials:redmine

Differences

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

Link to this comparison view

tutorials:redmine [2009/11/14 23:21]
razvan created
tutorials:redmine [2020/07/20 09:16]
Line 1: Line 1:
-= Redmine = 
  
-* Install and configure Redmine 
- 
-== System settings == 
- 
-* Debian GNU/Linux Testing (squeeze)<code> 
-ixlabs:~# cat /etc/issue 
-Debian GNU/Linux squeeze/sid \n \l 
-</code> 
-* kernel 2.6.30, CPU Pentium 4 2.66GHz, 1GB RAM<code> 
-ixlabs:~# uname -a 
-Linux ixlabs 2.6.30-2-686 #1 SMP Sat Sep 26 01:16:22 UTC 2009 i686 GNU/Linux 
- 
-ixlabs:~# lscpu 
-Architecture:          i686 
-CPU(s):                1 
-Thread(s) per core:    1 
-Core(s) per socket:    1 
-CPU socket(s):         1 
-Vendor ID:             GenuineIntel 
-CPU family:            15 
-Model:                 4 
-Stepping:              1 
-CPU MHz:               2666.887 
-L1d cache:             16K 
-L2 cache:              1024K 
- 
-ixlabs:~# free -m 
-             total       used       free     shared    buffers     cached 
-Mem:           470        441         29          0         67        188 
--/+ buffers/cache:        186        284 
-Swap:         3835         11       3823 
-</code> 
-* Apache 2.2.14<code> 
-ixlabs:~# apache2 -v        
-Server version: Apache/2.2.14 (Debian) 
-Server built:   Sep 29 2009 19:02:20 
-</code> 
- 
-== Scripts == 
- 
-* The scripts used throughout the process are stored in [[http://www.example.com|this Git repository]]. 
- 
-== Installation steps == 
- 
-=== Install Packages === 
- 
-<code> 
-apt-get install ruby rubygems ruby-dev libgemplugin-ruby libruby-extras rails rake subversion git-core libapache2-svn 
-</code> 
- 
-=== Download Redmine === 
- 
-* I'm using Subversion to checkout the latest stable branch as described on the [[http://www.redmine.org/wiki/redmine/Download|Redmine download page]].<code> 
-mkdir -p $FULL_CHECKOUT_PATH 
-svn co http://redmine.rubyforge.org/svn/branches/0.8-stable $FULL_CHECKOUT_PATH 
-</code> 
-* {{{FULL_CHECKOUT_PATH}}} is the root folder for the Redmine instance; it's {{{/usr/local/lib/redmine-0.8/}}} in my case. 
- 
-== Configuration steps == 
- 
-=== Update Rails version === 
- 
-* The current Redmine stable version (0.8.6, on October 14, 2009) defaults to using Rails 2.1.2. 
-* My Debian (squeeze) installation uses Rails 2.2.3<code> 
-ixlabs:~/repo-admin/ixlabs/redmine# dpkg -l rails 
-Desired=Unknown/Install/Remove/Purge/Hold 
-| Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend 
-|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) 
-||/ Name           Version        Description 
-+++-==============-==============-============================================ 
-ii  rails          2.2.3-1        MVC ruby based framework geared for web appl 
-</code> 
-* I have to comment out the {{{RUBY_GEM_VERSION}}} variable definition in {{{$FULL_CHECKOUT_PATH/config/environment.rb}}} to use the latest installed version<code> 
-#RAILS_GEM_VERSION = '2.1.2' unless defined? RAILS_GEM_VERSION 
-</code> 
-=== Configure the database === 
- 
-* I'm using MySQL as database backend. 
-* First step is creating the database:<code> 
-mysql> create database redmine; 
-Query OK, 1 row affected (0.00 sec) 
- 
-mysql> grant all privileges on redmine.* to 'redmine'@'localhost' identified by 'om0Tayui'; 
-Query OK, 0 rows affected (0.00 sec) 
- 
-mysql> flush privileges; 
-Query OK, 0 rows affected (0.00 sec) 
-</code> 
-* I'm using the following script to configure the database for Redmine:<code> 
- 
-</code> 
tutorials/redmine.txt · Last modified: 2020/07/20 09:16 (external edit)