Project

General

Profile

HowTo Install Redmine in Ubuntu » History » Version 2

Sam Wilson, 2010-05-26 05:26
Threw in some other stuff about apache etc. Needs lots more work.

1 1 Umit Uzun
h1. Redmine Installation on Virtual or Normal Ubuntu
2
3 2 Sam Wilson
This page is a guide to installing Redmine on either a virtual or actual installation of the Ubuntu operating system.  If you follow all instructions correctly you will be installed your Redmine server successfully almost an hour.
4 1 Umit Uzun
5 2 Sam Wilson
h2. Step 1: Install Ubuntu
6 1 Umit Uzun
7 2 Sam Wilson
If you are installing on a non-virtual Ubuntu instance, please skip this section.
8 1 Umit Uzun
9 2 Sam Wilson
*Installing VirtualBox:*
10
11
1.Download last version of Sun VirtualBox (version 3.0.10 or newer) tool in your system.
12 1 Umit Uzun
2.Install to your system by following the instructions.
13
14
*Installing Ubuntu on VirtualBox:*
15
16
1.Download last version of Ubuntu(version 9.10 or newer) OS in your system.
17
2.After installed VirtualBox on your system you will create a new virtual operating which will be Linux type and Ubuntu subtype. If you don't know anything about VirtualBox and/or its usage please refer to the google.
18
19
3.While installing Ubuntu you should type the related configurations as follows:
20
(These all configurations are optional, you can give any name what you what.)
21
Q: What is your name? A: Redmine Server
22
Q: What name do you want to use to login? A: redmine
23
Q: Choose to password to keep your account safe? A: redmine
24
Q: What is the name of this computer? A: redmine-server
25
Choose “Log in automatically.” radio button.
26
27
4.When you finished up installation all of them open up your new VirtualBox Ubuntu OS and open up terminal(console) screen and  issuing these commands:
28
> sudo apt-get update
29
> sudo apt-get upgrade
30
31
*Configuring VirtualBox:*
32
33
1.If you want to reach your VirtualBox Ubuntu OS from different machine, you have to configure VirtualBox Ubuntu OS's network setting to Bridged Adapter. So you can reach your VirtualBox Ubuntu from internal IP address easily. Because it get's same IP block as you from DHCP easily. I mean your guest and host computer is same IP block as different network client.
34
35
2.If you had assigned a static IP to your Network Consult by giving your static ethernet MAC address, you have to assign unique MAC address your VirtualBox Ubuntu OS by Setting->Network->MAC address initialization box. By this MAC address, you can get static ip easily or you can configure your Ubuntu system to not use DHCP, instead of that you can assign static IP manually.
36
37 2 Sam Wilson
h2. Step 2: Install Redmine
38 1 Umit Uzun
39 2 Sam Wilson
Once you have a functioning Ubuntu operating system up and running, you can continue with installing Redmine.
40 1 Umit Uzun
41 2 Sam Wilson
h3. Install dependencies
42
43
The following packages are required to install and run Redmine.  Please install them by running @apt-get@ as root:
44
45
>sudo apt-get package-name
46
47
where @package-name@ is each of:
48
* apache2 
49
* apache2-threaded-dev 
50
* build-essential
51
* libapache-dbi-perl 
52
* libapache2-mod-perl2 
53
* libapache2-svn
54
* libdigest-sha1-perl 
55
* libgemplugin-ruby 
56
* libgemplugin-ruby1.8 
57
* libruby-extras 
58
* libruby1.8-extras 
59
* mongrel 
60
* mysql-server
61
* rails
62
* rake 
63
* ruby
64
* rubygems
65
* rubygems1.8
66
* ruby1.8-dev
67
* subversion
68
69
_(Could someone please clean up this list?)_
70
71 1 Umit Uzun
*Package Installation and Setup:*
72
73
1.Once you’ve installed the VirtualBox Ubuntu OS and updated it, you need to install a bunch of packages that we will prepare the server for the Redmine installation. So, as root, install the following packages by issuing: 
74 2 Sam Wilson
> sudo apt-get install 
75
> sudo apt-get install 
76 1 Umit Uzun
77
The packages we’re installing above are MySQL, phpMyAdmin, Rails, Ruby Gems, Mongrel and Ruby Dev environment.
78
During the installation of the packages, when MySQL is installed, it will prompt you to	create a password. Make sure you remember it. You will need it later to log in to the 	phpMyAdmin. To make simplicity you can set all passwords to “redmine”.
79
80
2.Create a new directory for Redmine. I put mine in /opt/redmine. And download last version of Redmine in it with wget command line downloader and extract it by issuing:
81
> sudo mkdir /opt/redmine
82
> sudo cd /opt/redmine
83
> sudo wget http://rubyforge.org/frs/download.php/66633/redmine-0.8.6.tar.gz
84
> tar -xvf redmine-0.8.6.tar.gz
85
86
*Database Setup:*
87
88
1.Now it’s time to create an empty database for Redmine. As you may have noticed, we installed phpMyAdmin earlier. phpMyAdmin will come in handy now. Head over to http://localhost/phpmyadmin. You should be presented with the phpMyAdmin login screen.
89
Type in “root” and the MySQL “password” you created when installing MySQL.
90
91
2.First, click on “Databases” Then, at the bottom of the screen, in the “Create new database” text box create a new database called “redmine” and set “Collation” to “utf8_general_ci”.
92
93
3.Now, go back to the home screen and click on:
94
“Privileges”
95
“Add a new User” 
96
Fill out the “Login Information” boxes. Call your user “redmine”. Make sure you remember password you create here. It will be used when you set up the database connection details in Redmine.
97
In the “Database for user” section, check “Create database with same name and grant all privileges” and click on the “Go” button.
98
99
4.Log out of phpMyAdmin.
100
101
*Redmine Database Connection Configuration:*
102
103
1.It’s time to configure the database connection. If you installed Redmine as I did above, then copy “config/database.yml.example” to “config/database.yml” and edit this file in order to configure your database settings for “production” environment. You’ll find the “database.yml.example” issuing:
104
> sudo cd /opt/redmine/redmine-0.8.6/config
105
106
2.So now, assuming you’re in the “/opt/redmine/redmine-0.8.6/config” directory, issue:
107
> sudo cp database.yml.example database.yml 
108
109
3.Then, open the “database.yml” file, issue:
110
> sudo gedit database.yml
111
… and edit it as in the example for a MySQL database below:
112
113
production:
114
adapter: mysql
115
socket: /var/run/mysqld/mysqld.sock
116
database: redmine
117
host: localhost
118
username: redmine
119
password: [password]
120
121
Then save “database.yml” file and exit to the command prompt.
122
On Ubuntu the “mysql.sock” is located in /var/run/mysqld/mysqld.sock, as noted in the “config” above. 
123
(The standard Redmine installation assumes the socket is located in “/opt/redmine/redmine-0.8.6/tmp/mysqld.sock”.)
124
125
4.Create the database structure, by running the following command under the application root directory(I mean “/opt/redmine/redmine-0.8.6”):
126
> sudo rake db:migrate RAILS_ENV="production" 
127
It will create the necessary tables in the redmine database you created earlier and an 	administrator account.
128
129
5.Insert default configuration data in database, by issuing:
130
> sudo rake redmine:load_default_data RAILS_ENV="production" 
131
(This step is optional but highly recommended, as you can define your own configuration	from scratch. It will load default roles, trackers, statuses, work flows and enumerations. While loading default data command prompt wants to given language selection by you.) 
132
133
*Setting up Permissions:*
134
135
1.The user who runs Redmine must have write permission on the following sub directories: “files”, “log”, “tmp” (create the last one if not present). You probably already have a “tmp” directory in /opt/redmine/redmine-0.8.6, but if you don’t, create one now by issuing:
136
> sudo mkdir /opt/redmine/redmine-0.8.6
137
138
2.If you haven’t created a Redmine user, do it now by issuing:
139
> sudo useradd redmine
140
141
3.Now, assuming you run Redmine with a redmine user, from your /opt/redmine/redmine-0.8.6 directory issue:
142
> sudo chown -R redmine:redmine files log tmp
143
> sudo chmod -R 755 files log tmp
144
145
*Testing the Installation:*
146
147
1.It should all be working now. Test the installation by running the WEBrick web server issue:
148
> sudo cd /opt/redmine/redmine-0.8.6
149
> sudo ruby script/server -e production
150
	
151
Once WEBrick has started, point your browser to http://localhost:3000/. Or, if you are using a browser on another computer than what you installed Redmine on, point your browser to http://192.168.1.10:3000/ (if that’s the IP address you gave your Redmine server). You should now see the application welcome page. 
152
153
*Log in:*
154
155
1.Use default administrator account to log in:
156
Login : admin
157
Password : admin
158
159
2.You can go to Admin & Settings to modify application settings.
160
161
*Setting Up Static IP:*
162
163
1.A more easy method for configuring a static IP address is to use your local DHCP server to assign a permanent IP to the VirtualBox OS mac address. That way you will not have to do anything inside VBS. Consult your network administrator. 
164
165
2.Or you should learn configuration parameters as given below, and can configure your system to get static IP address:
166
The desired IP address
167
Network mask and broadcast address
168
Gateway address
169
Your local DNS server address(es)
170
171
*Assigning Host Name and Domain for VirtualBox OS:*
172
173
1.A more easy method for adding your IP address - Host name pair configurations to your DNS server . Consult your network administrator.
174
175 2 Sam Wilson
h2. Configuring the Passenger Apache module
176 1 Umit Uzun
177 2 Sam Wilson
Passenger is a module for apache2 that allow apache to run ruby on rails applications.  Install it thus:
178
179
>$ sudo gem install passenger
180
181
Then go to the passenger apache2 module installation directory and run @passenger-install-apache2-module@
182
183
> $ cd /var/lib/gems/1.X/gems/passenger-X.X.X/
184
185
> $ sudo bin/passenger-install-apache2-module
186
187
Next, configure Apache:
188
189
In /etc/apache2/mods-available/passenger.load we will add next line
190
191
> LoadModule passenger_module /var/lib/gems/1.X/gems/passenger-X.X.X/ext/apache2/mod_passenger.so
192
193
We have to edit the conf of the passenger apache2 module in /etc/apache2/mods-available/passenger.conf
194
195
> PassengerRoot /var/lib/gems/1.X/gems/passenger-X.X.X
196
> PassengerRuby /usr/bin/ruby1.X
197
198
And now we active the module
199
200
> $ sudo a2enmod passenger
201
202
Apache virtualhost for redmine web app
203
204
<pre>
205
    <VirtualHost *:80>
206
        ServerName redmine.server.com
207
208
        DocumentRoot /var/www/redmine/public
209
210
        ServerAdmin user@server.com
211
        LogLevel warn
212
        ErrorLog /var/log/apache2/redmine_error
213
        CustomLog /var/log/apache2/redmine_access combined
214
215
        <Directory /var/www/redmine/public>
216
            Options Indexes FollowSymLinks MultiViews
217
            AllowOverride None
218
            Order allow,deny
219
            allow from all
220
        </Directory>
221
    </VirtualHost>
222
</pre>
223
224
subversion server config in apache
225
226
<pre>
227
    <VirtualHost *:80>
228
	ServerName svn.server.com
229
	ServerAdmin user@server.com
230
	ErrorLog /var/log/apache2/svn_error
231
       	CustomLog /var/log/apache2/svn_access combined
232
        <Location /project>
233
           DAV svn
234
           SVNPath /var/lib/svn/project
235
236
           AuthType Basic
237
           AuthName "Trac system for Server projects"
238
           AuthUserFile "/var/lib/svn/.htpasswd"
239
           Require valid-user 
240
	   <LimitExcept GET PROPFIND OPTIONS REPORT>
241
               Require valid-user
242
           </LimitExcept>
243
       </Location>
244
    </Virtualhost>
245
</pre>
246
247
h2. Sendmail Server Configuration:
248
249 1 Umit Uzun
1.Before configure the email support of Redmine, we should download sendmail application for Ubuntu, issue:
250
> sudo apt-get install sendmail
251
> sudo sendmailconfig (Answer Yes to all questions which will be asked you)
252
253
2.It’s time to configure the server connection. Copy “config/email.yml.example” to “config/email.yml” and edit this file in order to configure your database settings for “production” environment. You’ll find the “email.yml.example” issue:
254
> sudo cd /opt/redmine/redmine-0.8.6/config
255
256
3.So now, assuming you’re in the “/config” directory, issue:
257
> sudo cp email.yml.example email.yml 
258
259
4.Then, open the “email.yml” file, issue:
260
> sudo gedit email.yml
261
… and edit it as in the example for sendmail configuration below:
262
263
production:
264
delivery_method: :sendmail
265
sendmail_settings:
266
location: /usr/sbin/sendmail
267
arguments: -i -t
268
address: smtp.example.net
269
port: 25
270
domain: example.net
271
authentication: :none
272
user_name: redmine@example.net
273
password: redmine
274
275
Then save “email.yml” file and exit to the command prompt.
276
277
5.It’s time to configure the “environmet.rb” configuration. Open up the “environment.rb” and change “config.action_mailer.perform_deliveries = false” to “config.action_mailer.perform_deliveries = true” then save and close the “environment.rb”.
278
279
*Subversion Installation and Configuration:*
280
281
1.Before configure the subversion support of Redmine, we should download subversion application for Ubuntu, issue:
282
> sudo apt-get install subversion
283
284
2.If your Redmine can't find the “subversion” command you can help to find by issuing:
285
· > sudo cd /opt/redmine/redmine-0.8.6/config
286
· > sudo gedit environment.rb
287
· Add ENV['PATH'] = "#{ENV['PATH']}:/subversion/path" line in it.
288
· Save and close the “environment.rb”
289
290
*Start Application Boot Time:*
291
292
1.To automatically start the application on booting your server you need to modify your “crontab”, issue:
293
> export EDITOR=gedit
294
> crontab -e
295
296
2.Your “crontab” file will be presented. This is the list of programs that start at certain times or at boot. Add the following to the “crontab” (all on one line):
297
@reboot cd /opt/redmine/redmine-0.8.6 ; rm -f log/mongrel.pid ; mongrel_rails start -e production -p 3000 -d
298
299
*Backup:*
300
301
1.Running backups is always a good idea. Redmine backups should include:
302
data (stored in your redmine database) 
303
/usr/bin/mysqldump -u -p | gzip > /path/to/redmine/backup/db/redmine_`date +%y_%m_%d`.gz
304
attachments (stored in the files directory of your Redmine install)
305
rsync -a /path/to/redmine/files /path/to/redmine/backup/files
306
307
2.Or you can use bash shell to automate kind of this operation issue:
308
> sudo cd /opt/redmine/redmine-0.8.6
309
> sudo mkdir backup
310
> sudo mkdir backup/db
311
> sudo mkdir backup/files
312
> sudo gedit backup/runRedmineBackup.bash
313
314
And after opened gedit with “runRedmineBackup.bash” write all commands below:
315
316
#!/bin/bash
317
data=`date -I`
318
mysqldump --user=root --password="redmine" --all-databases | gzip > db/backup-$data.sql.gz
319
cd db
320
ftp -i -n << EOF
321
open ftpserver.example.net
322
user username password
323
bin
324
mput backup-$data.sql.gz
325
bye
326
EOF
327
328
Then save “runRedmineBackup.bash” file and exit to the command prompt. After creation of  runRedmineBackup.bash you can add this bash to run continually between specified periods. Issue:
329
330
> export EDITOR=gedit
331
> crontab -e
332
Add 0 0 * * 0 cd /opt/redmine/redmine-0.8.6/backup ; sh runRedmineBackup.bash commands to crontab to backup database weekly.
333
	
334
To work this bush without any permission problem you have to change all of them modes to maxium permission issue:
335
336
> sudo chmod -R 777 backup
337
> sudo chown -R redmine:redmine backup
338
339
That's all. Now we completely installed Redmine our virtual Ubuntu OS and can reach from any machine at our network easily. Congratulations..!
340
341 2 Sam Wilson
h2. Sources & contributors.
342
343
* Ümit Uzun 06/11/2009.
344
* Some of the above material comes from Macada's wiki, licenced under the GNU Free Documentation License 1.2.  See "Redmine in Ubuntu Jaunty 9.04":http://wiki.ousli.org/index.php/Redmine_in_Ubuntu_Jaunty_9.04 by David 'macada', last modified 2010-02-08, accessed 2010-05-26.
345
* Sam Wilson 2010-05-26, formatting changes.