Category Archives: Redmine

How to Install Redmine 0.9.3 on Centos Update, Including Apache and SVN Configuration

This is on a fresh version of centos and includes; Ruby on Rail setup Redmine Installation Apache configuration SVN autocreate SVN authentication using redmine Thanks to the redmine team for an awesome tool. Install Ruby on Rails Install ruby 1.8.7 … Continue reading

Posted in Centos 5.2, Redmine, Ruby on Rails | Tagged , , , | Leave a comment

How to Remove an Old version of Ruby

This post just saved me a hours of work, thanks http://www.d-man.org/news/2009/01/06/91/ It outlines how to remove an old version of ruby and install the version you need.

Posted in Redmine, Ruby on Rails | Tagged , , | Leave a comment

How To Install Redmine on Centos 5.2 Update

This is a combination of all my instructions on how to setup redmine on Centos.  Its still a work in progress so please note any problems in comments. Install Ruby on Rails yum install ruby ruby-devel ruby-libs ruby-irb ruby-rdoc ruby-mysql … Continue reading

Posted in Centos 5.2, Mongrel, RHEL5, Redmine | Tagged , , , , | 6 Comments

Set up Mongrel as a service and start it automatically on Centos 5.2

  From – http://bitsandchaos.wordpress.com/2007/11/18/integrate-mongrel-with-rhel-and-derivatives/ This is tailored for the redmine installation that is descibed on this site. create a directory mkdir /etc/mongrel create a file in that directory vi /etc/mongrel/mongrel.conf Put this into the file # we want three instances, … Continue reading

Posted in Centos 5.2, Mongrel, Redmine | Tagged | Leave a comment

Create a Mongrel Cluster with an Apache Frontend Load Balancer for Redmine

  Taken from http://www.redmine.org/wiki/redmine/HowTo_run_Redmine_with_a_Mongrel_cluster Install Mongrel gem install mongrel mongrel_cluster daemons Configure the Mongrel Cluster for redmine. cd /opt/redmine mongrel_rails cluster::configure -e production -p 8000 -N 3 -c /opt/redmine-0.8.0_RC1 –user apache –group apache Start the Cluster mongrel_rails cluster::start Configure apache as … Continue reading

Posted in Centos 5.2, Redmine | Leave a comment

How to install Redmine 0.8.0 RC1 on Centos 5.2

The new release looks almost complete so I thought I would look at the differences between 0.8.0 and 0.7.3. The installation is basically the same as 0.7.3 except you need to update rails and gem. Follow my instruction on how … Continue reading

Posted in Centos 5.2, Redmine | Tagged | Leave a comment

How To Configure Subversion access control with apache mod dav svn and mod perl on Redmine in Centos5.2

I found the instructions at http://www.redmine.org/wiki/redmine/Repositories_access_control_with_apache_mod_dav_svn_and_mod_perl did not work for me. I managed to get it working doing the following; You do not need to but you can set subversion 1.54 by installing the RPMForge repos, follow these instructions - http://wiki.centos.org/AdditionalResources/Repositories/RPMForge … Continue reading

Posted in Centos 5.2, Redmine | Tagged | 1 Comment

How To Autocreate Subversion Repositories with Redmine on Centos 5.2

Make sure apache starts at boot. chkconfig httpd on Create a repository folder. mkdir /svn Change the owner and group to root.apache chown -R root.apache /svn Change the permissions chmod 0750 /svn Configure subversion to be browsed, goto /etc/httpd/conf.d vi … Continue reading

Posted in Redmine | Tagged | 1 Comment

Install Redmine on Centos 5.2

See instructions on how to install Ruby on Rails – http://www.how-to-linux.com/2008/12/how-to-install-ruby-on-rails-on-centos-52/ go to /opt cd /opt download the source http://rubyforge.org/frs/?group_id=1850 wget http://rubyforge.org/frs/download.php/39478/redmine-0.7.3.zip unzip redmine-0.7.3.zip Create a Database for Redmine (install mysql if nececssary – see http://www.how-to-linux.com/2008/12/install-mysql-server-on-centos-52/) mysql -u root -p … Continue reading

Posted in Redmine, Ruby on Rails | 1 Comment