##// END OF EJS Templates
Merged r10465 from trunk....
Merged r10465 from trunk. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/2.1-stable@10534 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r10209:5eab4af70d1b
r10324:2df7c0ff3a60
Show More
INSTALL
99 lines | 3.3 KiB | text/plain | TextLexer
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870 == Redmine installation
Redmine - project management software
Jean-Philippe Lang
Use Bundler for gem management (#5638)....
r8784 Copyright (C) 2006-2012 Jean-Philippe Lang
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870 http://www.redmine.org/
== Requirements
Etienne Massip
Updated Ruby required version....
r8883 * Ruby 1.8.7, 1.9.2 or 1.9.3
Jean-Philippe Lang
Use Bundler for gem management (#5638)....
r8784 * RubyGems
* Bundler >= 1.0.21
Eric Davis
Updated the INSTALL and UPGRADING documents for the 1.0 release....
r3734
Jean-Philippe Lang
Updated INSTALL doc....
r1610 * A database:
Jean-Philippe Lang
Doc update for 1.2.0 release....
r5845 * MySQL (tested with MySQL 5.1)
Jean-Philippe Lang
Merged r10391 from trunk....
r10209 * PostgreSQL (tested with PostgreSQL 9.1)
Jean-Philippe Lang
Doc update for 1.2.0 release....
r5845 * SQLite3 (tested with SQLite 3.6)
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
Optional:
Jean-Philippe Lang
Use Bundler for gem management (#5638)....
r8784 * SCM binaries (e.g. svn, git...), for repository browsing (must be available in PATH)
* ImageMagick (to enable Gantt export to png images)
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
== Installation
1. Uncompress the program archive
Eric Davis
Updated the INSTALL and UPGRADING documents for the 1.0 release....
r3734
Jean-Philippe Lang
Use Bundler for gem management (#5638)....
r8784 2. Install the required gems by running:
bundle install --without development test
If ImageMagick is not installed on your system, you should skip the installation
of the rmagick gem using:
bundle install --without development test rmagick
Jean-Philippe Lang
Adds a note about Gemfile.local in the INSTALL doc....
r9213 If you need to load some gems that are not required by Redmine core (eg. fcgi),
you can create a file named Gemfile.local at the root of your redmine directory.
It will be loaded automatically when running `bundle install`.
Jean-Philippe Lang
Use Bundler for gem management (#5638)....
r8784 3. Create an empty utf8 encoded database: "redmine" for example
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
Jean-Philippe Lang
Use Bundler for gem management (#5638)....
r8784 4. Configure the database parameters in config/database.yml
Jean-Philippe Lang
Merged r10391 from trunk....
r10209 for the "production" environment (default database is MySQL and ruby1.8)
If you're running Redmine with MySQL and ruby1.9, replace the adapter name
with `mysql2`
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
Jean-Philippe Lang
Use Bundler for gem management (#5638)....
r8784 5. Generate a session store secret
Eric Davis
Updated the INSTALL and UPGRADING documents for the 1.0 release....
r3734
Jean-Philippe Lang
Adds rake config/initializers/session_store.rb to the install doc....
r2433 Redmine stores session data in cookies by default, which requires
Eric Davis
Updated the INSTALL and UPGRADING documents for the 1.0 release....
r3734 a secret to be generated. Under the application main directory run:
Jean-Philippe Lang
Updated INSTALL and UPGRADING docs with new rake task (#10891)....
r9494 rake generate_secret_token
Eric Davis
Updated the INSTALL and UPGRADING documents for the 1.0 release....
r3734
Jean-Philippe Lang
Use Bundler for gem management (#5638)....
r8784 6. Create the database structure
Jean-Philippe Lang
Fixes INSTALL and UPGRADING steps order (#4848)....
r3341
Eric Davis
Updated the INSTALL and UPGRADING documents for the 1.0 release....
r3734 Under the application main directory run:
rake db:migrate RAILS_ENV="production"
Jean-Philippe Lang
Fixes INSTALL and UPGRADING steps order (#4848)....
r3341
Eric Davis
Updated the INSTALL and UPGRADING documents for the 1.0 release....
r3734 It will create all the tables and an administrator account.
Jean-Philippe Lang
Doc update for 0.7.2 release....
r1532
Jean-Philippe Lang
Use Bundler for gem management (#5638)....
r8784 7. Setting up permissions (Windows users have to skip this section)
Eric Davis
Updated the INSTALL and UPGRADING documents for the 1.0 release....
r3734
The user who runs Redmine must have write permission on the following
Jean-Philippe Lang
Use Bundler for gem management (#5638)....
r8784 subdirectories: files, log, tmp & public/plugin_assets.
Eric Davis
Updated the INSTALL and UPGRADING documents for the 1.0 release....
r3734
Assuming you run Redmine with a user named "redmine":
sudo chown -R redmine:redmine files log tmp public/plugin_assets
sudo chmod -R 755 files log tmp public/plugin_assets
Jean-Philippe Lang
Doc update for 0.7.2 release....
r1532
Jean-Philippe Lang
Use Bundler for gem management (#5638)....
r8784 8. Test the installation by running the WEBrick web server
Eric Davis
Updated the INSTALL and UPGRADING documents for the 1.0 release....
r3734
Under the main application directory run:
Jean-Philippe Lang
Updates for 2.0.0 release....
r9513 ruby script/rails server -e production
Eric Davis
Updated the INSTALL and UPGRADING documents for the 1.0 release....
r3734
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870 Once WEBrick has started, point your browser to http://localhost:3000/
Eric Davis
Updated the INSTALL and UPGRADING documents for the 1.0 release....
r3734 You should now see the application welcome page.
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
Jean-Philippe Lang
Use Bundler for gem management (#5638)....
r8784 9. Use the default administrator account to log in:
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870 login: admin
password: admin
Eric Davis
Updated the INSTALL and UPGRADING documents for the 1.0 release....
r3734 Go to "Administration" to load the default configuration data (roles,
trackers, statuses, workflow) and to adjust the application settings
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
Eric Davis
Updated the INSTALL and UPGRADING documents for the 1.0 release....
r3734 == SMTP server Configuration
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
Jean-Philippe Lang
Adds an application configuration file: config/configuration.yml (#7408)....
r4632 Copy config/configuration.yml.example to config/configuration.yml and
edit this file to adjust your SMTP settings.
Eric Davis
Updated the INSTALL and UPGRADING documents for the 1.0 release....
r3734 Do not forget to restart the application after any change to this file.
Jean-Philippe Lang
Email delivery configuration moved to an unversioned YAML file (config/email.yml, see the sample file) (#1412)....
r1611
Please do not enter your SMTP settings in environment.rb.
Eric Davis
Updated the INSTALL and UPGRADING documents for the 1.0 release....
r3734
== References
* http://www.redmine.org/wiki/redmine/RedmineInstall
* http://www.redmine.org/wiki/redmine/EmailConfiguration
* http://www.redmine.org/wiki/redmine/RedmineSettings
* http://www.redmine.org/wiki/redmine/RedmineRepositories
* http://www.redmine.org/wiki/redmine/RedmineReceivingEmails
* http://www.redmine.org/wiki/redmine/RedmineReminderEmails
* http://www.redmine.org/wiki/redmine/RedmineLDAP