Project

General

Profile

HowTo Install Redmine in Ubuntu » History » Version 27

Joshua Villagomez, 2011-05-03 21:33
Added export firewall statement. Otherwise, the add-apt-repository command will hang.

1 1 Umit Uzun
{{>toc}}
2
3 22 Anthony C
h1. Ubuntu 10.04 (and 10.04.1) using Passenger
4
5
The installation assumes that the web server and database are already in place, so you probably want to install the LAMP stack first if you don't already have it:
6
7
> $ sudo tasksel install lamp-server
8
9
Also, the default AppArmor configuration can get in the way, so you may need to set the mysqld profile to complain:
10
11
> $ sudo aa-complain /usr/sbin/mysqld
12
13 14 allen yeh
As of 10.04, Redmine is available through Ubuntu's package manager, and installation is simple:
14 3 Sam Wilson
15 14 allen yeh
> $ sudo apt-get install redmine redmine-mysql subversion
16 3 Sam Wilson
17 1 Umit Uzun
The second package, _redmine-mysql_, can be replaced by either _redmine-pgsql_ or _redmine-sqlite_ if you want to use either of those databases.
18
19 22 Anthony C
The installation process should prompt you for all the interesting details.
20
21 1 Umit Uzun
Redmine will now be installed in @/usr/share/redmine@ and @/etc/redmine@
22
23 24 John Hogenmiller
Note:  The package with Ubuntu is stuck in the 0.9.x branch for now.  A PPA exists that has the 1.1 branch here: https://launchpad.net/~ondrej/+archive/redmine
24
25
To install redmine using the PPA:
26
27
  sudo add-apt-repository ppa:ondrej/redmine
28
sudo apt-get update
29
sudo apt-get install redmine 
30
31 27 Joshua Villagomez
Note: If your server is behind a firewall, you will need to export your firewall settings before running @add-apt-repository@. Otherwise, the command will hang. 
32
Run the following <pre>export http_proxy="http://proxy.your.server:port" and export https_proxy="http:proxy.your.server:port".</pre>
33
34 22 Anthony C
If you set your AppArmor mysqld profile to complain you ought to set it back to enforce:
35
36
> $ sudo aa-enforce /usr/sbin/mysqld
37
38 1 Umit Uzun
h2. Configuration
39
40 22 Anthony C
Symlink @/usr/share/redmine/public@ to your desired web-accessible location.  E.g.:
41
42
> $ sudo ln -s /usr/share/redmine/public /var/www/redmine
43
44
By default, passenger runs as 'nobody', so you'll need to fix that. In @/etc/apache2/mods-available/passenger.conf@, add:
45
46
> PassengerDefaultUser www-data
47
48
You'll also need to configure the @/var/www/redmine@ location in @/etc/apache2/sites-available/default@ by adding:
49
50
<pre><Directory /var/www/redmine>
51
    RailsBaseURI /redmine
52
    PassengerResolveSymlinksInDocumentRoot on
53
</Directory>
54
</pre>
55
56
Enable passenger:
57
58
> $ sudo a2enmod passenger
59
60 25 Maxim Nikolaevich
Restart apache2
61
62
> $ sudo /etc/init.d/apache2 restart
63
64
and you should be able to access Redmine at: http://redmine.server.ip.address/redmine
65 22 Anthony C
66
If you receive a "403: Forbidden" error after setting up Redmine, the Redmine 'public' folder may have incorrect permissions set. The executable bit on the public folder must be enabled or you will receive a "403: Forbidden" error when attempting to access Redmine.
67
68
> $ sudo chmod a+x /usr/share/redmine/public
69
70
h1. Ubuntu 10.4 using mod_cgi
71
72
The installation assumes that the web server and database are already in place, so you probably want to install the LAMP stack first if you don't already have it:
73
74
> $ sudo tasksel install lamp-server
75
76
Also, the default AppArmor configuration can get in the way, so you may need to set the mysqld profile to complain:
77
78
> $ sudo aa-complain /usr/sbin/mysqld
79
80
As of 10.04, Redmine is available through Ubuntu's package manager, and installation is simple:
81
82
> $ sudo apt-get install redmine redmine-mysql subversion
83
84
The second package, _redmine-mysql_, can be replaced by either _redmine-pgsql_ or _redmine-sqlite_ if you want to use either of those databases.
85
86
The installation process should prompt you for all the interesting details.
87
88
Redmine will now be installed in @/usr/share/redmine@ and @/etc/redmine@
89
90
If you set your AppArmor mysqld profile to complain you ought to set it back to enforce:
91
92
> $ sudo aa-enforce /usr/sbin/mysqld
93
94
h2. Configuration
95
96 3 Sam Wilson
> Using Ubuntu Server 10.04.1, configuring Redmine via mod_cgi as described in this section does not seem to work. If you can successfully make this work, please update these instructions! Otherwise follow the instructions in the next section for installing on Ubuntu 10.04 using Passenger if mod_cgi does not work for you.
97
98
Symlink @/usr/share/redmine/public@ to your desired web-accessible location.  E.g.:
99
100
> $ sudo ln -s /usr/share/redmine/public /var/www/redmine
101
102
The other files that you need to modify/create are as follows:
103
104
@/etc/redmine/default/database.yml@:
105 1 Umit Uzun
106 14 allen yeh
<pre>
107 6 Roger Lipscombe
production:
108
  adapter: mysql
109 5 Roger Lipscombe
  database: redmine
110 14 allen yeh
  host: localhost
111 5 Roger Lipscombe
  username: redmine
112
  password: pa55w0rd
113
  encoding: utf8
114
</pre>
115
116
@/usr/share/redmine/public/dispatch.cgi@:
117
118
<pre>
119
#!/usr/bin/ruby
120
121
require File.dirname(__FILE__) + "/../config/environment" unless defined?(RAILS_ROOT)
122 20 Peter Hobor
123 5 Roger Lipscombe
require "dispatcher"
124
125
ADDITIONAL_LOAD_PATHS.reverse.each { |dir| $:.unshift(dir) if File.directory?(dir) } if defined?(Apache::RubyRun)
126
Dispatcher.dispatch
127
</pre>
128
129
@/usr/share/redmine/public/.htaccess@:
130 15 Spenser Gilliland
131 5 Roger Lipscombe
<pre>
132
RewriteEngine On
133
RewriteBase /redmine
134
RewriteRule ^$ index.html [QSA]
135
RewriteRule ^([^.]+)$ $1.html [QSA]
136
RewriteCond %{REQUEST_FILENAME} !-f
137 17 Tim M
RewriteRule ^(.*)$ dispatch.cgi [QSA,L]
138
</pre>
139
140
And that's it!  If these instructions didn't work for you, please expand them to include whatever is needed.
141 5 Roger Lipscombe
142 14 allen yeh
h1. Redmine Installation on Virtual or Normal Ubuntu < 10.04
143 1 Umit Uzun
144 21 Graham King
This page is a guide to installing Redmine on either a virtual or actual installation of the Ubuntu operating system.  If you follow all instructions correctly you will have installed your Redmine server successfully in almost an hour.
145 1 Umit Uzun
146 2 Sam Wilson
h2. Step 1: Install Ubuntu
147 1 Umit Uzun
148 2 Sam Wilson
If you are installing on a non-virtual Ubuntu instance, please skip this section.
149 1 Umit Uzun
150 2 Sam Wilson
*Installing VirtualBox:*
151
152 21 Graham King
1.Download the latest version of Sun VirtualBox (version 3.0.10 or newer).
153
2.Install VirtualBox by following the instructions.
154 1 Umit Uzun
155
*Installing Ubuntu on VirtualBox:*
156
157 21 Graham King
1.Download the latest version of Ubuntu (version 9.10 or newer).
158
2.After installing VirtualBox you will create a new virtual operating which will be Linux type and Ubuntu subtype. If you don't know anything about VirtualBox and/or its usage please refer to Google.
159 1 Umit Uzun
160 21 Graham King
3.While installing Ubuntu you should enter the following configuration:
161
(This suggested configuration is optional, you can enter any names you want.)
162 1 Umit Uzun
Q: What is your name? A: Redmine Server
163
Q: What name do you want to use to login? A: redmine
164
Q: Choose to password to keep your account safe? A: redmine
165
Q: What is the name of this computer? A: redmine-server
166
Choose “Log in automatically.” radio button.
167
168 21 Graham King
4.When you've finished the installation, open up your new VirtualBox Ubuntu OS and open up a terminal (console) screen and issue these commands:
169 1 Umit Uzun
> sudo apt-get update
170
> sudo apt-get upgrade
171
172
*Configuring VirtualBox:*
173
174 21 Graham King
1.If you want to reach your VirtualBox Ubuntu OS from a different machine, you have to configure VirtualBox Ubuntu OS's network settings to Bridged Adapter. So you can reach your VirtualBox Ubuntu from an internal IP address easily. Because it get's the same IP block as you from DHCP easily. I mean your guest and host computer is same IP block as different network client.
175 1 Umit Uzun
176 21 Graham King
2.If you had assigned a static IP to your Network Consult by giving your static ethernet MAC address, you have to assign the unique MAC address your VirtualBox Ubuntu OS by Setting->Network->MAC address initialization box. By this MAC address, you can get a static IP easily or you can configure your Ubuntu system to not use DHCP, instead of that you can assign a static IP manually.
177 1 Umit Uzun
178 2 Sam Wilson
h2. Step 2: Install Redmine
179 1 Umit Uzun
180 2 Sam Wilson
Once you have a functioning Ubuntu operating system up and running, you can continue with installing Redmine.
181 1 Umit Uzun
182 2 Sam Wilson
h3. Install dependencies
183
184
The following packages are required to install and run Redmine.  Please install them by running @apt-get@ as root:
185
186 26 Caner Candan
>sudo apt-get install package-name
187 2 Sam Wilson
188
where @package-name@ is each of:
189
* apache2 
190
* apache2-threaded-dev 
191
* build-essential
192
* libapache-dbi-perl 
193
* libapache2-mod-perl2 
194
* libapache2-svn
195
* libdigest-sha1-perl 
196
* libgemplugin-ruby 
197
* libgemplugin-ruby1.8 
198
* libruby-extras 
199
* libruby1.8-extras 
200
* mongrel 
201
* mysql-server
202
* rails
203
* rake 
204
* ruby
205
* rubygems
206
* rubygems1.8
207 1 Umit Uzun
* ruby1.8-dev
208 2 Sam Wilson
* subversion
209 1 Umit Uzun
210
_(Could someone please clean up this list?)_
211 2 Sam Wilson
212
h3. Package Installation and Setup
213 16 Ian Epperson
214 1 Umit Uzun
1.Once you’ve installed the VirtualBox Ubuntu OS and updated it, you need to install a bunch of packages that we will prepare the server for the Redmine installation. So, as root, install the following packages by issuing: 
215
> sudo apt-get install 
216 2 Sam Wilson
> sudo apt-get install 
217 21 Graham King
(_Surely some missing package names above?_)
218 1 Umit Uzun
219
The packages we’re installing above are MySQL, phpMyAdmin, Rails, Ruby Gems, Mongrel and Ruby Dev environment.
220 21 Graham King
During the installation of the packages, when MySQL is installed, it will prompt you to	create a password. Make sure you remember it. You will need it later to log in to phpMyAdmin. To make things simple you can set all passwords to “redmine”.
221 1 Umit Uzun
222 21 Graham King
2.Create a new directory for Redmine. I put mine in /opt/redmine. And download the latest version of Redmine in to it with the wget command line downloader and extract it by issuing:
223 1 Umit Uzun
> sudo mkdir /opt/redmine
224
> sudo cd /opt/redmine
225
> sudo wget http://rubyforge.org/frs/download.php/66633/redmine-0.8.6.tar.gz
226
> tar -xvf redmine-0.8.6.tar.gz
227
228 16 Ian Epperson
h3. Database Setup
229 1 Umit Uzun
230
1.Now it’s time to create an empty database for Redmine. As you may have noticed, we installed phpMyAdmin earlier. phpMyAdmin will come in handy now. Head over to http://localhost/phpmyadmin. You should be presented with the phpMyAdmin login screen.
231
Type in “root” and the MySQL “password” you created when installing MySQL.
232
233 21 Graham King
2.First, click on “Databases” then, at the bottom of the screen, in the “Create new database” text box create a new database called “redmine” and set “Collation” to “utf8_general_ci”.
234 1 Umit Uzun
235
3.Now, go back to the home screen and click on:
236
“Privileges”
237
“Add a new User” 
238
Fill out the “Login Information” boxes. Call your user “redmine”. Make sure you remember password you create here. It will be used when you set up the database connection details in Redmine.
239
In the “Database for user” section, check “Create database with same name and grant all privileges” and click on the “Go” button.
240
241
4.Log out of phpMyAdmin.
242
243 16 Ian Epperson
h3. Redmine Database Connection Configuration
244 1 Umit Uzun
245
1.It’s time to configure the database connection. If you installed Redmine as I did above, then copy “config/database.yml.example” to “config/database.yml” and edit this file in order to configure your database settings for “production” environment. You’ll find the “database.yml.example” issuing:
246
> sudo cd /opt/redmine/redmine-0.8.6/config
247
248
2.So now, assuming you’re in the “/opt/redmine/redmine-0.8.6/config” directory, issue:
249
> sudo cp database.yml.example database.yml 
250
251
3.Then, open the “database.yml” file, issue:
252
> sudo gedit database.yml
253
… and edit it as in the example for a MySQL database below:
254
255
production:
256
adapter: mysql
257
socket: /var/run/mysqld/mysqld.sock
258
database: redmine
259
host: localhost
260
username: redmine
261
password: [password]
262
263 21 Graham King
Then save the “database.yml” file and exit to the command prompt.
264 1 Umit Uzun
On Ubuntu the “mysql.sock” is located in /var/run/mysqld/mysqld.sock, as noted in the “config” above. 
265
(The standard Redmine installation assumes the socket is located in “/opt/redmine/redmine-0.8.6/tmp/mysqld.sock”.)
266
267 21 Graham King
4.Create the database structure, by running the following command under the application root directory (I mean “/opt/redmine/redmine-0.8.6”):
268 1 Umit Uzun
> sudo rake db:migrate RAILS_ENV="production" 
269 21 Graham King
It will create the necessary tables in the redmine database you created earlier and an administrator account.
270 1 Umit Uzun
271 21 Graham King
5.Insert the default configuration data in to the database, by issuing:
272 1 Umit Uzun
> sudo rake redmine:load_default_data RAILS_ENV="production" 
273 21 Graham King
(This step is optional but highly recommended, as you can define your own configuration from scratch. It will load default roles, trackers, statuses, work flows and enumerations. While loading default data command prompt wants to given language selection by you.) 
274 1 Umit Uzun
275 16 Ian Epperson
h3.  Setting up Permissions
276 1 Umit Uzun
277
1.The user who runs Redmine must have write permission on the following sub directories: “files”, “log”, “tmp” (create the last one if not present). You probably already have a “tmp” directory in /opt/redmine/redmine-0.8.6, but if you don’t, create one now by issuing:
278
> sudo mkdir /opt/redmine/redmine-0.8.6
279
280
2.If you haven’t created a Redmine user, do it now by issuing:
281
> sudo useradd redmine
282
283
3.Now, assuming you run Redmine with a redmine user, from your /opt/redmine/redmine-0.8.6 directory issue:
284
> sudo chown -R redmine:redmine files log tmp
285
> sudo chmod -R 755 files log tmp
286
287 16 Ian Epperson
h3.  Testing the Installation
288 1 Umit Uzun
289
1.It should all be working now. Test the installation by running the WEBrick web server issue:
290
> sudo cd /opt/redmine/redmine-0.8.6
291
> sudo ruby script/server -e production
292
	
293 21 Graham King
Once WEBrick has started, point your browser to http://localhost:3000/. Or, if you are using a browser on a computer other than the one you installed Redmine on, point your browser to http://192.168.1.10:3000/ (if that’s the IP address you gave your Redmine server). You should now see the application welcome page. 
294 1 Umit Uzun
295
*Log in:*
296
297
1.Use default administrator account to log in:
298
Login : admin
299
Password : admin
300
301
2.You can go to Admin & Settings to modify application settings.
302
303 16 Ian Epperson
h3.  Setting Up Static IP
304 1 Umit Uzun
305 21 Graham King
1.An easier method for configuring a static IP address is to use your local DHCP server to assign a permanent IP to the VirtualBox OS mac address. That way you will not have to do anything inside VBS. Consult your network administrator. 
306 1 Umit Uzun
307 21 Graham King
2.Or you should determine the configuration parameters given below, and then you can configure your system to have a static IP address:
308 1 Umit Uzun
The desired IP address
309
Network mask and broadcast address
310
Gateway address
311
Your local DNS server address(es)
312
313 16 Ian Epperson
h3.  Assigning Host Name and Domain for VirtualBox OS
314 1 Umit Uzun
315 21 Graham King
1.An easier method for adding your IP address - Host name pair configuration to your DNS server . Consult your network administrator.
316 1 Umit Uzun
317 2 Sam Wilson
h2. Configuring the Passenger Apache module
318 1 Umit Uzun
319 21 Graham King
Passenger is a module for apache2 that allows Apache to run Ruby on Rails applications.  Install it thus:
320 2 Sam Wilson
321
>$ sudo gem install passenger
322
323
Then go to the passenger apache2 module installation directory and run @passenger-install-apache2-module@
324
325
> $ cd /var/lib/gems/1.X/gems/passenger-X.X.X/
326
327
> $ sudo bin/passenger-install-apache2-module
328
329
Next, configure Apache:
330
331
In /etc/apache2/mods-available/passenger.load we will add next line
332
333
> LoadModule passenger_module /var/lib/gems/1.X/gems/passenger-X.X.X/ext/apache2/mod_passenger.so
334
335
We have to edit the conf of the passenger apache2 module in /etc/apache2/mods-available/passenger.conf
336
337
> PassengerRoot /var/lib/gems/1.X/gems/passenger-X.X.X
338
> PassengerRuby /usr/bin/ruby1.X
339
340 21 Graham King
And now we activate the module
341 2 Sam Wilson
342
> $ sudo a2enmod passenger
343
344
Apache virtualhost for redmine web app
345
346
<pre>
347
    <VirtualHost *:80>
348
        ServerName redmine.server.com
349
350
        DocumentRoot /var/www/redmine/public
351
352
        ServerAdmin user@server.com
353
        LogLevel warn
354
        ErrorLog /var/log/apache2/redmine_error
355
        CustomLog /var/log/apache2/redmine_access combined
356
357
        <Directory /var/www/redmine/public>
358
            Options Indexes FollowSymLinks MultiViews
359
            AllowOverride None
360
            Order allow,deny
361
            allow from all
362
        </Directory>
363
    </VirtualHost>
364
</pre>
365
366 1 Umit Uzun
subversion server config in apache
367
368 2 Sam Wilson
<pre>
369
    <VirtualHost *:80>
370
	ServerName svn.server.com
371
	ServerAdmin user@server.com
372
	ErrorLog /var/log/apache2/svn_error
373
       	CustomLog /var/log/apache2/svn_access combined
374
        <Location /project>
375
           DAV svn
376
           SVNPath /var/lib/svn/project
377
378
           AuthType Basic
379
           AuthName "Trac system for Server projects"
380
           AuthUserFile "/var/lib/svn/.htpasswd"
381
           Require valid-user 
382
	   <LimitExcept GET PROPFIND OPTIONS REPORT>
383
               Require valid-user
384
           </LimitExcept>
385
       </Location>
386
    </Virtualhost>
387
</pre>
388
389 16 Ian Epperson
h2. Sendmail Server Configuration
390 2 Sam Wilson
391 21 Graham King
1.Before configuring email support for Redmine, we should download the sendmail application for Ubuntu, issue:
392 1 Umit Uzun
> sudo apt-get install sendmail
393 21 Graham King
> sudo sendmailconfig (Answer Yes to all questions which you will be asked)
394 1 Umit Uzun
395
2.It’s time to configure the server connection. Copy “config/email.yml.example” to “config/email.yml” and edit this file in order to configure your database settings for “production” environment. You’ll find the “email.yml.example” issue:
396
> sudo cd /opt/redmine/redmine-0.8.6/config
397
398
3.So now, assuming you’re in the “/config” directory, issue:
399
> sudo cp email.yml.example email.yml 
400
401
4.Then, open the “email.yml” file, issue:
402
> sudo gedit email.yml
403
… and edit it as in the example for sendmail configuration below:
404
405
production:
406
delivery_method: :sendmail
407
sendmail_settings:
408
location: /usr/sbin/sendmail
409
arguments: -i -t
410
address: smtp.example.net
411
port: 25
412
domain: example.net
413
authentication: :none
414
user_name: redmine@example.net
415
password: redmine
416
417
Then save “email.yml” file and exit to the command prompt.
418
419
5.It’s time to configure the “environmet.rb” configuration. Open up the “environment.rb” and change “config.action_mailer.perform_deliveries = false” to “config.action_mailer.perform_deliveries = true” then save and close the “environment.rb”.
420
421
h2.  Subversion Installation and Configuration
422
423 21 Graham King
1.Before configuring Subversion support for Redmine, we should download the Subversion application for Ubuntu, issue:
424 1 Umit Uzun
> sudo apt-get install subversion
425
426
2.If your Redmine can't find the “subversion” command you can help to find by issuing:
427
· > sudo cd /opt/redmine/redmine-0.8.6/config
428
· > sudo gedit environment.rb
429
· Add ENV['PATH'] = "#{ENV['PATH']}:/subversion/path" line in it.
430
· Save and close the “environment.rb”
431
432 16 Ian Epperson
h2.  Start Application at Boot Time
433 1 Umit Uzun
434
1.To automatically start the application on booting your server you need to modify your “crontab”, issue:
435
> export EDITOR=gedit
436
> crontab -e
437
438
2.Your “crontab” file will be presented. This is the list of programs that start at certain times or at boot. Add the following to the “crontab” (all on one line):
439
@reboot cd /opt/redmine/redmine-0.8.6 ; rm -f log/mongrel.pid ; mongrel_rails start -e production -p 3000 -d
440
441 16 Ian Epperson
h2.  Backup
442 1 Umit Uzun
443
1.Running backups is always a good idea. Redmine backups should include:
444 16 Ian Epperson
* data (stored in your redmine database) 
445 1 Umit Uzun
/usr/bin/mysqldump -u -p | gzip > /path/to/redmine/backup/db/redmine_`date +%y_%m_%d`.gz
446 16 Ian Epperson
* attachments (stored in the files directory of your Redmine install)
447 1 Umit Uzun
rsync -a /path/to/redmine/files /path/to/redmine/backup/files
448
449 21 Graham King
2.Or you can use the bash shell to automate this kind of operation, issue:
450 1 Umit Uzun
> sudo cd /opt/redmine/redmine-0.8.6
451
> sudo mkdir backup
452
> sudo mkdir backup/db
453
> sudo mkdir backup/files
454
> sudo gedit backup/runRedmineBackup.bash
455
456 21 Graham King
And after open “runRedmineBackup.bash” with gedit, write all commands below:
457 16 Ian Epperson
<pre>
458 1 Umit Uzun
#!/bin/bash
459
data=`date -I`
460
mysqldump --user=root --password="redmine" --all-databases | gzip > db/backup-$data.sql.gz
461
cd db
462
ftp -i -n << EOF
463
open ftpserver.example.net
464
user username password
465
bin
466
mput backup-$data.sql.gz
467
bye
468
EOF
469 16 Ian Epperson
</pre>
470 21 Graham King
Then save the “runRedmineBackup.bash” file and exit to the command prompt. After creation of runRedmineBackup.bash you can add this bash script to run continually between specified periods. Issue:
471 1 Umit Uzun
472
> export EDITOR=gedit
473
> crontab -e
474
Add 0 0 * * 0 cd /opt/redmine/redmine-0.8.6/backup ; sh runRedmineBackup.bash commands to crontab to backup database weekly.
475
	
476 21 Graham King
For this to work without any permission problems you have to change the permissions of the files to maximum, issue:
477 1 Umit Uzun
478
> sudo chmod -R 777 backup
479
> sudo chown -R redmine:redmine backup
480
481 21 Graham King
That's all. Now we have completely installed Redmine on our virtual Ubuntu OS and can reach it from any machine in our network easily. Congratulations..!
482 1 Umit Uzun
483
h2. Sources & contributors.
484 2 Sam Wilson
485
* Ümit Uzun 06/11/2009.
486
* Some of the above material comes from Macada's wiki, licenced under the GNU Free Documentation License 1.2.  See "Redmine in Ubuntu Jaunty 9.04":http://wiki.ousli.org/index.php/Redmine_in_Ubuntu_Jaunty_9.04 by David 'macada', last modified 2010-02-08, accessed 2010-05-26.
487
* Sam Wilson 2010-05-26, formatting changes.
488 14 allen yeh
* Allen Yeh 2010-09-08, Added apt-get install subversion into instructions for 10.04 otherwise  once redmine is setup an error like this will result this error -> +*The entry or revision was not found in the repository.*+
489 18 Glenn Gould
490
h2. Additional Sources
491
492
* http://www.techrecipes.net/web/redmine/install-in-ubuntu