Project

General

Profile

HowTo Install Redmine using Debian package » History » Version 16

Rodolfo Pilas, 2012-02-15 02:01
ln -s /var/cache/redmine/default/plugin_assets /usr/share/redmine/public/ to enable plugins assests access from web

1 1 Jérémy Lal
h1. HowTo Install Redmine using Debian package
2
3
A redmine debian package is available in squeeze, sid and "lenny-backports":http://backports.org/dokuwiki/doku.php?id=instructions
4
Featuring:
5
* automatic database configuration,
6
* multiple instances support.
7
8
The core package is redmine.
9
Three packages (redmine-*) provide correct dependencies for mysql, pgsql, sqlite.
10
11 12 Jérémy Lal
Several configurations are given as working examples in :
12
/usr/share/doc/redmine/examples
13
14
Explanations of how the configuration is dealt with are given in :
15
/usr/share/doc/redmine/README.Debian.gz
16
17
There is no per-instance support for plugins, but those dropped to :
18
/usr/share/redmine/vendor/plugins
19
should be ok.
20
The migrate_plugins task is called upon each (re)configuration or upgrade.
21
Since custom plugins are often bound to a specific redmine version, it is advised
22
to remove them before upgrades.
23 2 Piotr Serwa
24
25
h1. Installation details
26
27 3 Piotr Serwa
h2. Install the necessary packages 
28 2 Piotr Serwa
29 3 Piotr Serwa
From root console:
30 1 Jérémy Lal
31 14 Pier-Olivier Clement
<pre>
32
apt-get install mysql
33
</pre>
34 3 Piotr Serwa
during mysql setup, provide a new root password for mysql
35 1 Jérémy Lal
36 14 Pier-Olivier Clement
<pre>
37 15 Pier-Olivier Clement
apt-get install redmine
38 14 Pier-Olivier Clement
</pre>
39 3 Piotr Serwa
during redmine install, select mysql database with local connection, set the admin password for redmine_default database
40 2 Piotr Serwa
41 10 Piotr Serwa
42
h2. Correct the bug (wrong display):
43 1 Jérémy Lal
44 14 Pier-Olivier Clement
<pre>
45 1 Jérémy Lal
vi $redmine_dir/vendor/rails/activesupport/lib/active_support/vendor.rb
46 14 Pier-Olivier Clement
</pre>
47 10 Piotr Serwa
48
and modify from
49 3 Piotr Serwa
gem 'i18n', '>= 0.1.3'
50 1 Jérémy Lal
in
51
gem 'i18n', '>= 0.1.3', '< 0.4.0' 
52
53 14 Pier-Olivier Clement
<pre>
54
apt-get install libapache2-mod-passenger
55
</pre>
56 1 Jérémy Lal
57 14 Pier-Olivier Clement
58 1 Jérémy Lal
h2. Do some configuration
59
60 14 Pier-Olivier Clement
<pre>
61
ln -s /usr/share/redmine/public /var/www/redmine
62 16 Rodolfo Pilas
ln -s /var/cache/redmine/default/plugin_assets /usr/share/redmine/public/
63 2 Piotr Serwa
64 14 Pier-Olivier Clement
chown -R www-data:www-data /var/www/redmine
65
echo "RailsBaseURI /redmine" > /etc/apache2/sites-available/redmine
66
a2ensite redmine
67
/etc/init.d/apache2 reload
68
/etc/init.d/apache2 restart
69
</pre>
70
71 1 Jérémy Lal
h2. Configure email smtp server
72 4 Piotr Serwa
73
Copy from template:
74 14 Pier-Olivier Clement
<pre>
75
cp /usr/share/doc/redmine/examples/email.yml.example /etc/redmine/default/email.yml
76
</pre>
77 13 Søren Jensen
78 3 Piotr Serwa
Edit (at the end, there are uncommented production / development blocks to be filled in):
79 14 Pier-Olivier Clement
<pre>
80
vi /etc/redmine/default/email.yml
81
</pre>
82 1 Jérémy Lal
83 6 Piotr Serwa
h2. Run the browser
84 1 Jérémy Lal
85
Open http://localhost/redmine
86
87 6 Piotr Serwa
Log in as admin / admin
88
89 7 Piotr Serwa
h2. Futher configuration - SVN
90 1 Jérémy Lal
91 8 Piotr Serwa
Get the API key (settings / repositories)
92
93
Make a crontab to have repositories generated in the background: 
94
95 14 Pier-Olivier Clement
<pre>
96
crontab -e
97
</pre>
98 9 Piotr Serwa
99
In the editor, paste the following (this runs the scan of the projects and if needed it creates the svn repositories):
100 6 Piotr Serwa
@/5 * * * * /usr/bin/ruby /usr/share/redmine/extra/svn/reposman.rb --redmine localhost/redmine --svn-dir /usr/home/svn --owner www-data --group www-data --url file:///usr/home/svn --verbose --key=YOUR_API_KEY_HERE --command="/usr/bin/svnadmin create" >> /var/log/reposman.log@
101
102
Configure servername/svn, so that svn repositories are available over apache webdav:
103 11 Piotr Serwa
fixme
104
105
h2. fix the bug in {{count}} display
106
107 14 Pier-Olivier Clement
<pre>
108
vi $redmine_dir/vendor/rails/activesupport/lib/active_support/vendor.rb
109
</pre>
110 11 Piotr Serwa
111
and modify from
112 1 Jérémy Lal
@gem 'i18n', '>= 0.1.3'@
113
in
114
@gem 'i18n', '>= 0.1.3', '< 0.4.0'@