##// END OF EJS Templates
Updated INSTALL doc....
Jean-Philippe Lang -
r1610:5d0b53544c85
parent child
Show More
@@ -1,65 +1,62
1 1 == Redmine installation
2 2
3 3 Redmine - project management software
4 4 Copyright (C) 2006-2008 Jean-Philippe Lang
5 5 http://www.redmine.org/
6 6
7 7
8 8 == Requirements
9 9
10 * Ruby on Rails 2.0.2 (not Rails 2.1)
11 * A database (see compatibility below)
10 * Ruby on Rails 2.1
11 * A database:
12 * MySQL (tested with MySQL 5)
13 * PostgreSQL (tested with PostgreSQL 8.1)
14 * SQLite (tested with SQLite 3)
12 15
13 16 Optional:
14 17 * SVN binaries >= 1.3 (needed for repository browsing, must be available in PATH)
15 18 * RMagick (gantt export to png)
16 19
17 Supported databases:
18 * MySQL (tested with MySQL 5)
19 * PostgreSQL (tested with PostgreSQL 8.1)
20 * SQLite (tested with SQLite 3)
21
22
23 20 == Installation
24 21
25 22 1. Uncompress the program archive
26 23
27 24 2. Create an empty database: "redmine" for example
28 25
29 26 3. Configure database parameters in config/database.yml
30 27 for "production" environment (default database is MySQL)
31 28
32 29 4. Create the database structure. Under the application main directory:
33 30 rake db:migrate RAILS_ENV="production"
34 31 It will create tables and an administrator account.
35 32
36 33 5. Setting up permissions
37 34 The user who runs Redmine must have write permission on the following
38 35 subdirectories: files, log, tmp (create the last one if not present).
39 36
40 37 Assuming you run Redmine with a user named redmine:
41 38 mkdir tmp
42 39 sudo chown -R redmine:redmine files log tmp
43 40 sudo chmod -R 755 files log tmp
44 41
45 42 6. Test the installation by running WEBrick web server:
46 43 ruby script/server -e production
47 44
48 45 Once WEBrick has started, point your browser to http://localhost:3000/
49 46 You should now see the application welcome page
50 47
51 48 7. Use default administrator account to log in:
52 49 login: admin
53 50 password: admin
54 51
55 52 Go to "Administration" to load the default configuration data (roles,
56 53 trackers, statuses, workflow) and adjust application settings
57 54
58 55
59 56 == SMTP server Configuration
60 57
61 58 In config/environment.rb, you can set parameters for your SMTP server:
62 59 config.action_mailer.smtp_settings: SMTP server configuration
63 60 config.action_mailer.perform_deliveries: set to false to disable mail delivering
64 61
65 62 Don't forget to restart the application after any change to this file.
General Comments 0
You need to be logged in to leave comments. Login now