You are hereUbuntu / Redmine Project Management / Redmine Installation
Redmine Installation
There are three basic ways to install and configure Redmine:
- A quick and easy way to do the install is to use the free VM from http://www.turnkeylinux.org/redmine
- If you are running Ubuntu Linux 10.4, you can select the redmine package for version 0.9.3
- You can download the trunk and build the latest following the installation instructions at
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