diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-06-15 12:25:48 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-06-15 12:25:48 +0000 |
commit | 576130f363ffb766fbf2a3d47ab1b09758b68a1e (patch) | |
tree | ceb5f138e71822a4802c09e4e88a5030fd445a9b /doc/INSTALL | |
parent | 597c1e6c09f57e5e3b5f471f774137fbe21b06cd (diff) | |
download | redmine-576130f363ffb766fbf2a3d47ab1b09758b68a1e.tar.gz redmine-576130f363ffb766fbf2a3d47ab1b09758b68a1e.zip |
Doc update for 0.7.2 release.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1546 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'doc/INSTALL')
-rw-r--r-- | doc/INSTALL | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/doc/INSTALL b/doc/INSTALL index 872543d95..ab35bd1b8 100644 --- a/doc/INSTALL +++ b/doc/INSTALL @@ -7,7 +7,7 @@ http://www.redmine.org/ == Requirements -* Ruby on Rails 2.0.2 +* Ruby on Rails 2.0.2 (not Rails 2.1) * A database (see compatibility below) Optional: @@ -33,17 +33,26 @@ Supported databases: rake db:migrate RAILS_ENV="production" It will create tables and an administrator account. -5. Test the installation by running WEBrick web server: +5. Setting up permissions + The user who runs Redmine must have write permission on the following + subdirectories: files, log, tmp (create the last one if not present). + + Assuming you run Redmine with a user named redmine: + mkdir tmp + sudo chown -R redmine:redmine files log tmp + sudo chmod -R 755 files log tmp + +6. Test the installation by running WEBrick web server: ruby script/server -e production Once WEBrick has started, point your browser to http://localhost:3000/ You should now see the application welcome page -6. Use default administrator account to log in: +7. Use default administrator account to log in: login: admin password: admin -7. Go to "Administration" to load the default configuration data (roles, + Go to "Administration" to load the default configuration data (roles, trackers, statuses, workflow) and adjust application settings |