You are hereUbuntu / Redmine Project Management / Redmine Installation

Redmine Installation


By admin - Posted on 24 September 2010

There are three basic ways to install and configure Redmine:

  1. A quick and easy way to do the install is to use the free VM from http://www.turnkeylinux.org/redmine
  2. If you are running Ubuntu Linux 10.4, you can select the redmine package for version 0.9.3
  3. You can download the trunk and build the latest following the installation instructions at
    1. Download - http://www.redmine.org/wiki/redmine/Download
    2. Install - http://www.redmine.org/wiki/redmine/RedmineInstall

Serving Up Redmine via Apache2 / Passenger / Rails

  • sudo apt-get install apache2 libapache2-mod-passenger passenger-doc rails
  • sudo apt-get install rails
  • passenger-doc

 

 

Modify the etc/apache2/sites-available/default

 

 <Directory /var/www/redmine>
      RailsBaseURI /redmine
    </Directory>

  <Location /svn>
  DAV svn
  SVNPath /home/rick/svn
  AuthType Basic
  AuthName "rick"
  AuthUserFile /etc/subversion/passwd
  Require valid-user
  </Location>

 

 

Most changes require you to restart Apache2 -- use the command sudo /etc/init.d/apache2 restart