Wiki » Historique » Version 76
Patrice Nadeau, 2014-10-11 11:47
1 | 13 | Patrice Nadeau | %{font-size:18pt}Redmine% |
---|---|---|---|
2 | |||
3 | --- |
||
4 | |||
5 | 1 | Patrice Nadeau | {{toc}} |
6 | |||
7 | 13 | Patrice Nadeau | h1. Redmine |
8 | 6 | Patrice Nadeau | |
9 | 31 | Patrice Nadeau | Logiciel de gestion de projets, sources, bugs et timeline. |
10 | Contient un module de Wiki, de fichiers. |
||
11 | Supporte aussi les systèmes de version de fichier (Git, SVN entre autre). |
||
12 | Disponible à http://www.redmine.org/projects/redmine/wiki/Download |
||
13 | |||
14 | De base, ne fonctionne pas avec Apache |
||
15 | 1 | Patrice Nadeau | |
16 | 55 | Patrice Nadeau | Sa principale difficulté d’installation est sa dépendance à Ruby. |
17 | 31 | Patrice Nadeau | Voir aussi : |
18 | * http://bitnami.com/stack/redmine |
||
19 | * http://www.turnkeylinux.org/redmine |
||
20 | |||
21 | 6 | Patrice Nadeau | h1. Installation |
22 | |||
23 | 32 | Patrice Nadeau | Ce guide documente une installation GNU/Linux avec les version suivantes : |
24 | * openSUSE 13.1 |
||
25 | * Redmine 2.4.2 |
||
26 | |||
27 | 1 | Patrice Nadeau | h2. Prérequis |
28 | |||
29 | 56 | Patrice Nadeau | Un serveur *LAMP(Linux, Apache, MySQL, PHP)* [[guides_opensuse:|openSUSE]] *fonctionnel*. |
30 | 32 | Patrice Nadeau | |
31 | 44 | Patrice Nadeau | Les logiciels supplémentaires suivants : |
32 | 50 | Patrice Nadeau | |
33 | <pre><code class="bash"> |
||
34 | 58 | Patrice Nadeau | zypper install libmysqlclient-devel ruby-2.0 ruby20-devel rubygem-bundler rubygem-mysql2 rubygem-pg ImageMagick ImageMagick-devel git gcc make |
35 | 56 | Patrice Nadeau | </code></pre> |
36 | 32 | Patrice Nadeau | |
37 | h2. MySQL |
||
38 | |||
39 | Création de la base de donnés. |
||
40 | Substituer les items suivants à votre choix : |
||
41 | * redmine : Usager pour la base de donnés. |
||
42 | * password : Mot de passe de la base de donnees. |
||
43 | * db : Nom de la base de donnés. |
||
44 | |||
45 | Lancer MySQL : |
||
46 | <pre><code class="bash"> |
||
47 | mysql -u root -p |
||
48 | </code></pre> |
||
49 | |||
50 | Commandes MySQL : |
||
51 | <pre><code class="sql"> |
||
52 | create database db character set utf8; |
||
53 | create user 'redmine'@'localhost' identified by 'password'; |
||
54 | grant all privileges on db.* to 'redmine'@'localhost'; |
||
55 | commit; |
||
56 | quit; |
||
57 | </code></pre> |
||
58 | |||
59 | 33 | Patrice Nadeau | h2. Redmine |
60 | 13 | Patrice Nadeau | |
61 | 59 | Patrice Nadeau | L’installation sera faite dans _\srv\redmine_ (exemple avec la version 2.5) |
62 | 33 | Patrice Nadeau | <pre><code class="bash"> |
63 | cd /srv/ |
||
64 | 59 | Patrice Nadeau | svn co http://svn.redmine.org/redmine/branches/2.5-stable redmine |
65 | 33 | Patrice Nadeau | cd redmine |
66 | cp config/database.yml.example config/database.yml |
||
67 | cp config/configuration.yml.example config/configuration.yml |
||
68 | mkdir public/plugin_assets |
||
69 | </code></pre> |
||
70 | |||
71 | Si un usager MySQL autre que _root_ ou mot de passe diffèrent est utilisé : |
||
72 | Éditer le fichier *config/database.yml*, section *Production* et modifier les lignes : |
||
73 | * *username* |
||
74 | * *password* |
||
75 | |||
76 | Éditer le fichier _config/configuration.yml_ et modifier la configuration SMTP. |
||
77 | |||
78 | h2. Ruby |
||
79 | |||
80 | 34 | Patrice Nadeau | Installation des gems de Ruby |
81 | 1 | Patrice Nadeau | <pre><code class="bash"> |
82 | 34 | Patrice Nadeau | cd redmine |
83 | gem install bundler |
||
84 | gem install activerecord-mysql2-adapter |
||
85 | bundle install --without development test |
||
86 | 1 | Patrice Nadeau | </code></pre> |
87 | 34 | Patrice Nadeau | |
88 | h2. Initialisation |
||
89 | |||
90 | Création de la cryptographie, de la structure et des donnés de base : |
||
91 | <pre><code class="bash"> |
||
92 | cd /srv/redmine |
||
93 | rake generate_secret_token |
||
94 | RAILS_ENV=production rake db:migrate |
||
95 | RAILS_ENV=production rake redmine:load_default_data |
||
96 | </code></pre> |
||
97 | |||
98 | 69 | Patrice Nadeau | h2. Serveur web |
99 | |||
100 | 70 | Patrice Nadeau | Redmine peux être utiliser avec le serveur inclus _webrick_ (port 3000) ou _Apache_ (port 80). |
101 | |||
102 | 69 | Patrice Nadeau | h3. Webrick |
103 | |||
104 | 60 | Patrice Nadeau | Ouvrir dans le pare-feu le port TCP 3000 : |
105 | <pre><code class="bash"> |
||
106 | yast firewall services add tcpport=3000 zone=EXT |
||
107 | 34 | Patrice Nadeau | </code></pre> |
108 | 1 | Patrice Nadeau | |
109 | 69 | Patrice Nadeau | Lancer le serveur web |
110 | 34 | Patrice Nadeau | <pre><code class="bash"> |
111 | 1 | Patrice Nadeau | cd /srv/redmine |
112 | 34 | Patrice Nadeau | ruby script/rails server webrick -e production |
113 | </code></pre> |
||
114 | 16 | Patrice Nadeau | |
115 | 69 | Patrice Nadeau | h4. Transformation en daemon |
116 | 35 | Patrice Nadeau | |
117 | Le script original vient de http://www.redmine.org/projects/redmine/wiki/HowTo_Install_Redmine_on_openSUSE |
||
118 | Copier le script dans le fichier */etc/init.d/redmine* |
||
119 | |||
120 | Le modifier de la manière suivante : |
||
121 | * REDMINE_BIN=/srv/redmine/current/script/rails |
||
122 | * REDMINE_USER=user |
||
123 | * Corriger le «typo» à la ligne 73 : $REDMI-NE_BIN -> $REDMINE_BIN |
||
124 | * Dans la section stop, après la ligne killproc, ajouter *rm $PIDFILE* |
||
125 | |||
126 | Rendre le fichier exécutable, l’ajouter aux services SUSE et l’exécuter au démarrage : |
||
127 | <pre><code class="bash"> |
||
128 | chmod 0755 /etc/init.d/redmine |
||
129 | cp -s /etc/init.d/redmine /usr/bin/rcredmine |
||
130 | chkconfig -a redmine |
||
131 | </code></pre> |
||
132 | |||
133 | 69 | Patrice Nadeau | h3. Apache |
134 | 45 | Patrice Nadeau | |
135 | > En test, voir #23 |
||
136 | |||
137 | Transformation pour utilisation avec Apache. |
||
138 | * N'utilise pas _webrick_ |
||
139 | * Accessible par le port 80 au lieu de 3000 |
||
140 | |||
141 | Information provenant de : |
||
142 | 54 | Patrice Nadeau | * web : |
143 | ** http://martin-denizet.com/install-redmine-2-5-x-with-git-and-subversion-on-debian-with-apache2-rvm-and-passenger/ |
||
144 | ** http://www.redmine.org/projects/redmine/wiki/HowTo_configure_Apache_to_run_Redmine |
||
145 | 45 | Patrice Nadeau | * livre : "Mastering Redmine":http://shop.oreilly.com/product/9781849519144.do |
146 | |||
147 | 46 | Patrice Nadeau | h2. Modules Apache |
148 | |||
149 | Ajout |
||
150 | 45 | Patrice Nadeau | <pre><code class="bash"> |
151 | 49 | Patrice Nadeau | zypper install libcurl-devel apache2-devel apache2-mod_perl perl-Apache-DBI subversion-server |
152 | 45 | Patrice Nadeau | </code></pre> |
153 | |||
154 | Activation des modules Apache |
||
155 | <pre><code class="bash"> |
||
156 | a2enmod ssl |
||
157 | a2enmod perl |
||
158 | a2enmod dav |
||
159 | a2enmod dav_svn |
||
160 | a2enmod dav_fs |
||
161 | a2enmod rewrite |
||
162 | a2enmod headers |
||
163 | 1 | Patrice Nadeau | </code></pre> |
164 | |||
165 | 46 | Patrice Nadeau | h2. Modules _Passenger_ |
166 | |||
167 | 45 | Patrice Nadeau | <pre><code class="bash"> |
168 | cd /srv/redmine |
||
169 | gem install passenger |
||
170 | passenger-install-apache2-module2.0 |
||
171 | 1 | Patrice Nadeau | </code></pre> |
172 | |||
173 | 46 | Patrice Nadeau | h2. Activation de la configuration |
174 | |||
175 | 64 | Patrice Nadeau | Créer le fichier _/etc/apache2/conf.d/passenger.conf_ et ajouter la configuration inscrite par l'installation. |
176 | 61 | Patrice Nadeau | |
177 | 45 | Patrice Nadeau | Ajouter dans _/etc/apache2/vhosts.d/vhost.conf_ |
178 | <pre><code class="bash"> |
||
179 | <VirtualHost *:80> |
||
180 | 67 | Patrice Nadeau | # La ligne suivante est nécessaire seulement si plusieurs site web son présents sur le même serveur. |
181 | 45 | Patrice Nadeau | ServerName redmine.yourdomain.com |
182 | DocumentRoot /srv/redmine/public |
||
183 | |||
184 | 1 | Patrice Nadeau | RailsEnv production |
185 | 67 | Patrice Nadeau | PassengerAppRoot /srv/redmine |
186 | 45 | Patrice Nadeau | |
187 | <Directory "/srv/redmine/public"> |
||
188 | Options Indexes ExecCGI FollowSymLinks |
||
189 | 1 | Patrice Nadeau | AllowOverride None |
190 | Order deny,allow |
||
191 | Allow from all |
||
192 | </Directory> |
||
193 | </VirtualHost> |
||
194 | 65 | Patrice Nadeau | </code></pre> |
195 | |||
196 | Relancer Apache : |
||
197 | <pre><code class="bash"> |
||
198 | systemctl reload apache2 |
||
199 | 45 | Patrice Nadeau | </code></pre> |
200 | |||
201 | 66 | Patrice Nadeau | Fermer le port de webrick dans le parefeu |
202 | 1 | Patrice Nadeau | <pre><code class="bash"> |
203 | yast firewall services remove tcpport=3000 zone=EXT |
||
204 | </code></pre> |
||
205 | 68 | Patrice Nadeau | |
206 | h1. Post-installation |
||
207 | |||
208 | 71 | Patrice Nadeau | A partir d’un navigateur web, se brancher à : |
209 | * Webrick : http://server:3000 |
||
210 | * Apache : http://server |
||
211 | |||
212 | 69 | Patrice Nadeau | Utiliser l’usager *admin* avec le mot de passe *admin*. |
213 | Vérifier la configuration dans *Administration*, *Information*. |
||
214 | 66 | Patrice Nadeau | |
215 | 76 | Patrice Nadeau | Si un avertissement apparait pour l’écriture des répertoires, changer les droits : |
216 | 75 | Patrice Nadeau | <pre><code class="bash"> |
217 | cd /srv/redmine/public |
||
218 | chmod 0777 plugin_assets |
||
219 | |||
220 | </code></pre> |
||
221 | |||
222 | 29 | Patrice Nadeau | h1. Personnalisation |
223 | 8 | Patrice Nadeau | |
224 | 36 | Patrice Nadeau | h2. Ajout d’un logo |
225 | |||
226 | Les informations viennent de : http://www.redmine.org/projects/redmine/wiki/Howto_add_a_logo_to_your_Redmine_banner |
||
227 | |||
228 | Copier le logo dans _/srv/redmine/public/images/logo.png_ |
||
229 | 1 | Patrice Nadeau | |
230 | 37 | Patrice Nadeau | Modifier le fichier _/srv/redmine/app/views/layout/base.rhtml.erb_ |
231 | * Ajouter la ligne |
||
232 | 1 | Patrice Nadeau | <pre><code class="ruby"> |
233 | 37 | Patrice Nadeau | <img src="<%= Redmine::Utils.relative_url_root %>/images/logo.png" style="top-margin: 15px; left-margin: 15px;"/> |
234 | </code></pre> |
||
235 | * Si on ne veux plus afficher le titre, mettre en commentaire : |
||
236 | <pre><code class="ruby"> |
||
237 | 1 | Patrice Nadeau | <!--<h1><%= page_header_title %></h1>--> |
238 | 37 | Patrice Nadeau | </code></pre> |
239 | |||
240 | Redémarrer Redmine |
||
241 | 72 | Patrice Nadeau | |
242 | 36 | Patrice Nadeau | |
243 | 1 | Patrice Nadeau | h2. Plugins |
244 | |||
245 | 38 | Patrice Nadeau | h3. Extended Fields |
246 | |||
247 | Permet de créer de nouveau champ dans la basse de donnés. |
||
248 | |||
249 | http://www.redmine.org/plugins/extended_fields |
||
250 | |||
251 | Installation : |
||
252 | <pre><code class="bash"> |
||
253 | cd /srv/redmine |
||
254 | svn co http://svn.s-andy.com/extended-fields plugins/extended_fields |
||
255 | rake redmine:plugins:migrate RAILS_ENV=production |
||
256 | 1 | Patrice Nadeau | </code></pre> |
257 | 73 | Patrice Nadeau | |
258 | Relancer Redmine |
||
259 | 38 | Patrice Nadeau | |
260 | 4 | Patrice Nadeau | h3. Redmine Rouge |
261 | 12 | Patrice Nadeau | |
262 | 1 | Patrice Nadeau | Permet le support de langage supplémentaire pour l'affichage de la syntaxe d'un code source. |
263 | 4 | Patrice Nadeau | |
264 | 13 | Patrice Nadeau | "Langage supporté":http://rouge.jayferd.us/demo |
265 | 1 | Patrice Nadeau | |
266 | https://github.com/ngyuki/redmine_rouge |
||
267 | |||
268 | <pre> |
||
269 | <code class="bash"> |
||
270 | cd /srv/redmine/plugins |
||
271 | git clone https://github.com/ngyuki/redmine_rouge.git |
||
272 | cd .. |
||
273 | bundle install |
||
274 | </code> |
||
275 | </pre> |
||
276 | 74 | Patrice Nadeau | |
277 | Relancer redmine |
||
278 | |||
279 | 5 | Patrice Nadeau | |
280 | 22 | Patrice Nadeau | h3. Code Highlight |
281 | 9 | Patrice Nadeau | |
282 | 10 | Patrice Nadeau | http://www.redmine.org/plugins/codehightlight_button |
283 | 9 | Patrice Nadeau | |
284 | Bouton permettant de sélectionner du code et d'activer la syntaxe selon un langage. |
||
285 | 11 | Patrice Nadeau | >Ne fonctionne pas pour les langages supplémentaires supportées par le « plug-in » _Redmine Rouge_. Voir "ici":https://github.com/mediatainment/redmine_codebutton/issues/2 |
286 | 9 | Patrice Nadeau | |
287 | 1 | Patrice Nadeau | Installation |
288 | <pre><code class="bash"> |
||
289 | 10 | Patrice Nadeau | cd /srv/redmine/plugins |
290 | git clone https://github.com/mediatainment/redmine_codebutton.git |
||
291 | cd .. |
||
292 | rake redmine:plugins |
||
293 | 9 | Patrice Nadeau | rake redmine:plugins:migrate RAILS_ENV=production |
294 | 10 | Patrice Nadeau | # Relancer Redmine |
295 | 1 | Patrice Nadeau | rcredmine restart |
296 | </code></pre> |
||
297 | 11 | Patrice Nadeau | |
298 | 23 | Patrice Nadeau | h3. Redmine Issue Checklist |
299 | 11 | Patrice Nadeau | |
300 | Extends issues to store checklist items |
||
301 | |||
302 | http://redminecrm.com/projects/checklist |
||
303 | |||
304 | Installation |
||
305 | <pre><code class="bash"> |
||
306 | cd /srv/redmine/plugins |
||
307 | wget http://redminecrm.com/license_manager/4200/redmine_issue_checklist-2_0_5.zip |
||
308 | unzip redmine_issue_checklist-2_0_5.zip |
||
309 | bundle exec rake redmine:plugins NAME=redmine_issue_checklist RAILS_ENV=production |
||
310 | # Relancer Redmine |
||
311 | rcredmine restart |
||
312 | </code></pre> |
||
313 | |||
314 | Configuration |
||
315 | Dans *Administration* |
||
316 | * *Plugins* |
||
317 | ** Choisir les options voulues |
||
318 | * *Roles and permissions* |
||
319 | ** Choisir le rôle |
||
320 | Donner les droits voulus sur : |
||
321 | *** Done checklist items |
||
322 | *** Edit checklist items |
||
323 | 14 | Patrice Nadeau | *** View checklist |
324 | 1 | Patrice Nadeau | |
325 | 24 | Patrice Nadeau | h3. Redmine People |
326 | |||
327 | 29 | Patrice Nadeau | > A faire |
328 | 24 | Patrice Nadeau | |
329 | 20 | Patrice Nadeau | h3. WikiNG |
330 | 1 | Patrice Nadeau | |
331 | 20 | Patrice Nadeau | Personnalisation des items dans le wiki. |
332 | 28 | Patrice Nadeau | Ajoute des boutons et des icônes comme FIXME et TODO. |
333 | 29 | Patrice Nadeau | > « Écrase » le bouton installé par _Code Highlight_ |
334 | 21 | Patrice Nadeau | |
335 | Installation |
||
336 | 27 | Patrice Nadeau | <pre><code class="bash"> |
337 | 26 | Patrice Nadeau | cd /srv/redmine |
338 | wget http://projects.andriylesyuk.com/attachments/download/564/wiking-1.0.0b.tar.bz2 |
||
339 | tar xvf wiking-1.0.0b.tar.bz2 |
||
340 | mv wiking plugins |
||
341 | rake redmine:plugins:migrate RAILS_ENV=production |
||
342 | # restart Redmine |
||
343 | rcredmine restart |
||
344 | </code></pre> |
||
345 | 20 | Patrice Nadeau | |
346 | 14 | Patrice Nadeau | h1. Mise à jour |
347 | 1 | Patrice Nadeau | |
348 | 14 | Patrice Nadeau | S’assurer d'avoir les dernières versions des plugins. |
349 | 9 | Patrice Nadeau | |
350 | 41 | Patrice Nadeau | Disponible a http://www.redmine.org/projects/redmine/wiki/Download |
351 | |||
352 | Mise à jour de Redmine à partir de SVN (dernière version) |
||
353 | |||
354 | Vérifier la version pointée par SVN |
||
355 | <pre><code class="bash"> |
||
356 | svn info |
||
357 | </code></pre> |
||
358 | |||
359 | Si ne pointe pas sur la bonne, faire le changement : |
||
360 | <pre><code class="bash"> |
||
361 | svn switch http://svn.redmine.org/redmine/branches/2.4-stable |
||
362 | </code></pre> |
||
363 | |||
364 | Faire la mise à jour : |
||
365 | <pre><code class="bash"> |
||
366 | svn update |
||
367 | </code></pre> |
||
368 | |||
369 | Installation des «gem» de Ruby. |
||
370 | >Vérifier la version de _rubygem-mysql2_ et modifier le fichier *Gemfile* pour la même version. |
||
371 | |||
372 | <pre><code class="bash"> |
||
373 | cd /srv/redmine |
||
374 | rm -r /usr/lib64/ruby/gems/* |
||
375 | zypper rm rubygem-mysql2 |
||
376 | zypper in rubygem-mysql2 |
||
377 | gem install bundler |
||
378 | gem install activerecord-mysql2-adapter |
||
379 | bundle install --without development test |
||
380 | </code></pre> |
||
381 | |||
382 | Mise à jour (base de donnés, « plugins ») et ménage : |
||
383 | <pre><code class="bash"> |
||
384 | rake db:migrate RAILS_ENV=production |
||
385 | rake redmine:plugins:migrate RAILS_ENV=production |
||
386 | rake tmp:cache:clear |
||
387 | rake tmp:sessions:clear |
||
388 | rcredmine restart |
||
389 | </code></pre> |
||
390 | |||
391 | 14 | Patrice Nadeau | h1. Copie de sécurité |
392 | 5 | Patrice Nadeau | |
393 | 40 | Patrice Nadeau | Remplacer les items suivants : |
394 | * *username* : Usager de la base de donnés. |
||
395 | * *password* : Mot de passe de la base de donnés. |
||
396 | * *database* : Nom de la base de données. |
||
397 | * *path* : Emplacement pour recevoir le fichier. |
||
398 | |||
399 | <pre><code class="bash"> |
||
400 | /usr/bin/mysqldump -u username -p password database | gzip > /path/redmine_`date +%y_%m_%d`.gz |
||
401 | rsync -a /srv/redmine/files /path/ |
||
402 | </code></pre> |
||
403 | |||
404 | Script un peu plus evolué : |
||
405 | 5 | Patrice Nadeau | <pre> <code class="bash"> |
406 | 42 | Patrice Nadeau | |
407 | 5 | Patrice Nadeau | #!/bin/bash |
408 | # |
||
409 | # backup_redmine.sh |
||
410 | # Backup of a Redmine setup |
||
411 | 1 | Patrice Nadeau | # Last Changes: 2013-02-23 |
412 | 40 | Patrice Nadeau | # Maintainer: Patrice Nadeau <pnadeau@patricenadeau.com> |
413 | 5 | Patrice Nadeau | |
414 | # TODO Verify the results (folder exist, enough disk pace , etc..) |
||
415 | |||
416 | ## The only variable needed to be changed |
||
417 | # Directory of the Redmine install |
||
418 | declare -r RAIL_ROOT='/srv/redmine' |
||
419 | # MySQL database |
||
420 | declare -r MYSQL_DB='' |
||
421 | # MySQL username for the Redemine db |
||
422 | declare -r MYSQL_USER='' |
||
423 | # MySQL password for the Redemine db |
||
424 | declare -r MYSQL_PASSWORD='' |
||
425 | # Directory for the backup (must exist and with no space in the name) |
||
426 | declare -r DIR='/root' |
||
427 | ## end |
||
428 | |||
429 | # Exit level |
||
430 | declare -ir EXIT_OK=0 |
||
431 | declare -ir EXIT_WARNING=1 |
||
432 | declare -ir EXIT_ERROR=2 |
||
433 | |||
434 | declare -i STATUS=$EXIT_OK |
||
435 | |||
436 | # The directory inside the archive |
||
437 | declare -r REDMINE='redmine' |
||
438 | TMP_DIR=$DIR/$REDMINE |
||
439 | |||
440 | # This will be used for the archive file |
||
441 | declare -r DST=$DIR/redmine_$(date +%Y%m%d_%H%M%S).tar.gz |
||
442 | |||
443 | # The temporary sql file |
||
444 | declare -r TMP_MYSQL=$TMP_DIR/$MYSQL_DB.mysql |
||
445 | |||
446 | echo "Backup in progress in $DST" |
||
447 | |||
448 | #### Create the temp directory #### |
||
449 | mkdir $TMP_DIR |
||
450 | |||
451 | #### backup MySQL #### |
||
452 | if [ $STATUS -eq $EXIT_OK ] |
||
453 | then |
||
454 | STEP='Creating MySQL backup' |
||
455 | mysqldump --user=$MYSQL_USER --password=$MYSQL_PASSWORD $MYSQL_DB \ |
||
456 | > $TMP_MYSQL |
||
457 | STATUS=$? |
||
458 | fi |
||
459 | |||
460 | #### backup the Redmine folder #### |
||
461 | if [ $STATUS -eq $EXIT_OK ] |
||
462 | then |
||
463 | STEP='Creating Redmine'"'"' files backup' |
||
464 | cp --recursive $RAIL_ROOT $TMP_DIR |
||
465 | STATUS=$? |
||
466 | fi |
||
467 | |||
468 | #### create the archive file #### |
||
469 | if [ $STATUS -eq $EXIT_OK ] |
||
470 | then |
||
471 | STEP="Creating archive" |
||
472 | tar --create --gzip --file $DST --directory=$DIR $REDMINE |
||
473 | STATUS=$? |
||
474 | fi |
||
475 | |||
476 | #### cleanup #### |
||
477 | if [ $STATUS -eq $EXIT_OK ] |
||
478 | then |
||
479 | STEP='Cleaning up' |
||
480 | rm --recursive --force $TMP_DIR |
||
481 | STATUS=$? |
||
482 | fi |
||
483 | |||
484 | #### exit #### |
||
485 | if [ $STATUS -eq $EXIT_OK ] |
||
486 | then |
||
487 | echo "Backup done" |
||
488 | else |
||
489 | echo "Bakup failed with error code $STATUS in step $STEP" |
||
490 | fi |
||
491 | |||
492 | |||
493 | exit $STATUS |
||
494 | |||
495 | </code></pre> |
||
496 | 39 | Patrice Nadeau | |
497 | h1. Dépannage |
||
498 | |||
499 | h2. Mot de passe perdu |
||
500 | |||
501 | Le mot de passe admin par défaut est en _hash Sha1_ : *da3174755c5e82a436b6c7ff87c873ee50d6654b* et est *admin.* |
||
502 | |||
503 | h2. Le service tombe « DEAD » a chaque fois |
||
504 | |||
505 | Effacer le fichier _/srv/redmine/tmp/pids/server.pid_. |