Revision 1546
Added by Jean-Philippe Lang about 17 years ago
INSTALL | ||
---|---|---|
7 | 7 |
|
8 | 8 |
== Requirements |
9 | 9 |
|
10 |
* Ruby on Rails 2.0.2 |
|
10 |
* Ruby on Rails 2.0.2 (not Rails 2.1)
|
|
11 | 11 |
* A database (see compatibility below) |
12 | 12 |
|
13 | 13 |
Optional: |
... | ... | |
33 | 33 |
rake db:migrate RAILS_ENV="production" |
34 | 34 |
It will create tables and an administrator account. |
35 | 35 |
|
36 |
5. Test the installation by running WEBrick web server: |
|
36 |
5. Setting up permissions |
|
37 |
The user who runs Redmine must have write permission on the following |
|
38 |
subdirectories: files, log, tmp (create the last one if not present). |
|
39 |
|
|
40 |
Assuming you run Redmine with a user named redmine: |
|
41 |
mkdir tmp |
|
42 |
sudo chown -R redmine:redmine files log tmp |
|
43 |
sudo chmod -R 755 files log tmp |
|
44 |
|
|
45 |
6. Test the installation by running WEBrick web server: |
|
37 | 46 |
ruby script/server -e production |
38 | 47 |
|
39 | 48 |
Once WEBrick has started, point your browser to http://localhost:3000/ |
40 | 49 |
You should now see the application welcome page |
41 | 50 |
|
42 |
6. Use default administrator account to log in:
|
|
51 |
7. Use default administrator account to log in:
|
|
43 | 52 |
login: admin |
44 | 53 |
password: admin |
45 | 54 |
|
46 |
7. Go to "Administration" to load the default configuration data (roles,
|
|
55 |
Go to "Administration" to load the default configuration data (roles,
|
|
47 | 56 |
trackers, statuses, workflow) and adjust application settings |
48 | 57 |
|
49 | 58 |
|
Also available in: Unified diff
Doc update for 0.7.2 release.