Project

General

Profile

RedmineInstall » History » Version 74

Daniel Lopez, 2009-12-19 19:29
Installers and virtual appliances

1 73 Liraz Siri
2 1 Jean-Philippe Lang
h1. Installing Redmine
3
4
{{>TOC}}
5 73 Liraz Siri
6
h2. Alternative to manual installation
7 1 Jean-Philippe Lang
8 74 Daniel Lopez
If you want to skip manual installation the [[Download#Alternative-Sources|alternative sources]] of the download page includes all-in-one Redmine installers and virtual appliances.
9 1 Jean-Philippe Lang
10
h2. Requirements
11
12 25 Jean-Philippe Lang
h3. Operating system
13 1 Jean-Philippe Lang
14 68 Mischa The Evil
Redmine should run on most Unix, Linux, Mac and Windows systems as long as Ruby is available on this platform.
15 25 Jean-Philippe Lang
16
h3. Ruby & Ruby on Rails
17
18 30 Jean-Philippe Lang
The required Ruby and Ruby on Rails versions for a given Redmine version is:
19 25 Jean-Philippe Lang
20 30 Jean-Philippe Lang
|_. Redmine version|_. Supported Ruby versions|_. Required Rails version|
21 58 Eric Davis
|current trunk|ruby 1.8.6, 1.8.7|Rails 2.3.4|
22
|trunk from r2493 to r2886|ruby 1.8.6, 1.8.7|Rails 2.2.2|
23 32 Jean-Philippe Lang
|trunk before r2493|ruby 1.8.6, 1.8.7|Rails 2.1.2|
24 30 Jean-Philippe Lang
|0.8.x|ruby 1.8.6, 1.8.7|Rails 2.1.2|
25
|0.7.x|ruby 1.8.6|Rails 2.0.2|
26 22 Jean-Philippe Lang
27
Official releases include the appropriate Rails version in their @vendor@ directory. So no particular action is needed.
28 1 Jean-Philippe Lang
If you checkout the source from the Redmine repository, you can install a specific Rails version on your machine by running:
29
30 32 Jean-Philippe Lang
  gem install rails -v=2.2.2
31 25 Jean-Philippe Lang
32 28 Jean-Philippe Lang
Notes:
33 27 Jean-Philippe Lang
* RubyGems 1.3.1 is required
34 25 Jean-Philippe Lang
* Rake 0.8.3 is required
35 1 Jean-Philippe Lang
36 25 Jean-Philippe Lang
h3. Database
37
38 68 Mischa The Evil
* MySQL 4.1 or higher (recommended)
39 50 Mat Tipton
40 68 Mischa The Evil
 * make sure to install the C bindings for Ruby that dramatically improve performance. You can get them by running @gem install mysql@.
41
 * the Ruby MySQL gem currently does not support MySQL 5.1
42 35 Jean-Philippe Lang
43
* PostgreSQL 8
44
45
 * make sure your database datestyle is set to ISO (Postgresql default setting). You can set it using: @ALTER DATABASE "redmine_db" SET datestyle="ISO,MDY";@
46 67 Jean-Philippe Lang
 * a bug in PostgreSQL 8.4.0 affects Redmine behaviour (#4259), this is fixed in PostgreSQL 8.4.1
47 72 András Iványi
 * make sure to install the PosgreSQL adapter for Ruby. You can get it by running @gem install postgres-pr@
48 35 Jean-Philippe Lang
49
* SQLite 3
50 26 Jean-Philippe Lang
51 25 Jean-Philippe Lang
h3. Optional components
52 23 Jean-Philippe Lang
53 25 Jean-Philippe Lang
      * SCM binaries (eg. @svn@), for repository browsing (must be available in your PATH). See [[RedmineRepositories]] for SCM compatibility and requirements.
54
      * "RMagick":http://rmagick.rubyforge.org/ (to enable Gantt export to png image)
55 56 Eric Davis
      * "Ruby OpenID Library":http://openidenabled.com/ruby-openid/ (to enable OpenID support) [only on Redmine trunk / 0.9-dev]  Version 2 or greater is required.
56 1 Jean-Philippe Lang
57 8 Thomas Lecavelier
h2. Installation
58 1 Jean-Philippe Lang
59 6 Jean-Philippe Lang
1. [[Download]] and extract the archive or [[CheckingoutRedmine|checkout]] Redmine.
60
61 36 Yclept Nemo
2. Create an empty database and accompanying user named @redmine@ for example.
62 6 Jean-Philippe Lang
63
For MySQL:
64 1 Jean-Philippe Lang
65 38 Yclept Nemo
<pre>
66 39 Yclept Nemo
create database redmine character set utf8;
67
create user 'redmine'@'localhost' identified by 'my_password';
68
grant all privileges on redmine.* to 'redmine'@'localhost';
69 38 Yclept Nemo
</pre>
70 1 Jean-Philippe Lang
71 63 Thanos Kyritsis
For PostgreSQL:
72
73
<pre>
74
CREATE ROLE redmine LOGIN ENCRYPTED PASSWORD 'my_password' NOINHERIT VALID UNTIL 'infinity';
75 64 Thanos Kyritsis
CREATE DATABASE redmine WITH ENCODING='UTF8' OWNER=redmine;
76 63 Thanos Kyritsis
</pre>
77
78 3 Jean-Philippe Lang
3. Copy @config/database.yml.example@ to @config/database.yml@ and edit this file in order to configure your database settings for "production" environment.
79 1 Jean-Philippe Lang
80 14 Jean-Philippe Lang
Example for a MySQL database:
81
82
<pre>
83
production:
84
  adapter: mysql
85
  database: redmine
86
  host: localhost
87 40 Yclept Nemo
  username: redmine
88
  password: my_password
89 3 Jean-Philippe Lang
</pre>
90
91 54 Barbara Post
If your server is not running on the standard port (3306), use this configuration instead:
92
93
<pre>
94
production:
95
  adapter: mysql
96
  database: redmine
97
  host: localhost
98
  port: 3307
99
  username: redmine
100
  password: my_password
101
</pre>
102
103
104
Example for a PostgreSQL database (default port):
105 44 Alexey Lustin
106
<pre>
107
production:
108
  adapter: postgresql
109
  database: <your_database_name>
110
  host: <postgres_host>
111
  username: <postgres_user>
112 46 Istvan DEMETER
  password: <postgres_user_password>
113 1 Jean-Philippe Lang
  encoding: utf8
114 44 Alexey Lustin
  schema_search_path: <database_schema> (default - public)
115
</pre>
116
117 68 Mischa The Evil
4. Generate a session store secret. This is required on the *trunk* version of Redmine at r2493 or above and the released 0.8.7 version or above.
118 1 Jean-Philippe Lang
119 48 Mat Tipton
Redmine stores session data in cookies by default, which requires a secret to be generated. This can be done by running:
120 41 Yclept Nemo
121 61 Ethan Fremen
   rake config/initializers/session_store.rb
122 41 Yclept Nemo
123
5. Create the database structure, by running the following command under the application root directory:
124
125 62 Vladimir L
  RAILS_ENV=production rake db:migrate
126 1 Jean-Philippe Lang
127
It will create tables and an administrator account.
128
129 41 Yclept Nemo
6. Insert default configuration data in database, by running the following command:
130 1 Jean-Philippe Lang
131 62 Vladimir L
  RAILS_ENV=production rake redmine:load_default_data
132 32 Jean-Philippe Lang
133
This step is optional but *highly recommended*, as you can define your own configuration from scratch. It will load default roles, trackers, statuses, workflows and enumerations.
134
135
7. Setting up permissions
136
137 14 Jean-Philippe Lang
NB: _Windows users have to skip this section._
138
139
The user who runs Redmine must have write permission on the following subdirectories: @files@, @log@, @tmp@ (create the last one if not present).
140
141
Assuming you run Redmine with a @redmine@ user:
142
143 31 Eric Davis
<pre>
144 1 Jean-Philippe Lang
mkdir tmp public/plugin_assets
145 31 Eric Davis
sudo chown -R redmine:redmine files log tmp public/plugin_assets
146 14 Jean-Philippe Lang
sudo chmod -R 755 files log tmp public/plugin_assets
147
</pre>
148 1 Jean-Philippe Lang
149 32 Jean-Philippe Lang
8. Test the installation by running WEBrick web server:
150 1 Jean-Philippe Lang
151 33 Jean-Philippe Lang
  ruby script/server webrick -e production
152 1 Jean-Philippe Lang
153 14 Jean-Philippe Lang
Once WEBrick has started, point your browser to http://localhost:3000/. You should now see the application welcome page.
154 1 Jean-Philippe Lang
155 32 Jean-Philippe Lang
9. Use default administrator account to log in:
156 1 Jean-Philippe Lang
157
    * login: admin
158 14 Jean-Philippe Lang
    * password: admin
159 1 Jean-Philippe Lang
160
You can go to @Admin & Settings@ to modify application settings.
161
162 21 Jean-Philippe Lang
h2. SMTP server Configuration
163
164
h3. 0.8.x releases
165
166 66 Henry Bernard
Copy @config/email.yml.example@ to @config/email.yml@ and edit this file to adjust your SMTP settings.
167 21 Jean-Philippe Lang
168 45 Cyber Sprocket
See the [[Email Configuration|email configuration]] examples.
169
170 1 Jean-Philippe Lang
h3. 0.7.x releases
171
172
In config/environment.rb, you can set parameters for your SMTP server:
173
174
    * config.action_mailer.smtp_settings: SMTP server configuration
175 7 Thomas Lecavelier
    * config.action_mailer.perform_deliveries: set to false to disable mail delivering
176 11 Jean-Philippe Lang
177
Don't forget to restart the application after any change.
178
179
h2. Backups
180
181
Redmine backups should include:
182
* data (stored in your redmine database)
183
* attachments (stored in the @files@ directory of your Redmine install)
184
185
Here is a simple shell script that can be used for daily backups (assuming you're using a mysql database):
186
187
<pre>
188
# Database
189 55 Lukasz Slonina
/usr/bin/mysqldump -u <username> -p<password> <redmine_database> | gzip > /path/to/backup/db/redmine_`date +%y_%m_%d`.gz
190 11 Jean-Philippe Lang
191
# Attachments
192 1 Jean-Philippe Lang
rsync -a /path/to/redmine/files /path/to/backup/files
193
</pre>
194 69 Giuliano Simoncelli
195
h2. Notes on Windows installation
196
197
Get and install rubyinstaller from http://rubyforge.org. Form start menu select _Start Command Prompt with Ruby_
198
199
In the prompt follow the instruction given before
200
201
The commands:
202
203
<pre>
204
RAILS_ENV=production rake db:migrate
205
RAILS_ENV=production rake redmine:load_default_data
206
</pre>
207
208
has to be changed in 
209
210
<pre>
211
set RAILS_ENV=production
212
rake db:migrate
213 71 Giuliano Simoncelli
rake redmine:load_default_data
214 69 Giuliano Simoncelli
</pre>  
215
216 70 Giuliano Simoncelli
You may need to install install the mysql gem, with the command
217 69 Giuliano Simoncelli
218
<pre>
219
gem install mysql
220
</pre>
221
222
And in some case is required to copy the libmysql.dll file in your ruby/bin directory.
223
Not all libmysql.dll are ok this seem to works http://instantrails.rubyforge.org/svn/trunk/InstantRails-win/InstantRails/mysql/bin/libmySQL.dll