Projet

Général

Profil

Wiki » Historique » Version 235

Patrice Nadeau, 2018-08-17 13:22

1 214 Patrice Nadeau
# Redmine
2 6 Patrice Nadeau
3 31 Patrice Nadeau
Logiciel de gestion de projets, sources, bugs et timeline.
4
Contient un module de Wiki, de fichiers.
5
Supporte aussi les systèmes de version de fichier (Git, SVN entre autre).
6
Disponible à http://www.redmine.org/projects/redmine/wiki/Download
7
8
De base, ne fonctionne pas avec Apache
9 1 Patrice Nadeau
10
Sa principale difficulté d’installation est sa dépendance à Ruby.
11
Voir aussi :
12 219 Patrice Nadeau
13 1 Patrice Nadeau
* http://bitnami.com/stack/redmine
14
* http://www.turnkeylinux.org/redmine
15
16 121 Patrice Nadeau
{{lastupdated_at}} {{lastupdated_by}}
17
18 94 Patrice Nadeau
---
19 31 Patrice Nadeau
20 94 Patrice Nadeau
{{toc}}
21
22 214 Patrice Nadeau
## Installation
23 94 Patrice Nadeau
24 32 Patrice Nadeau
Ce guide documente une installation GNU/Linux avec les version suivantes :
25 225 Patrice Nadeau
* openSUSE Leap 15
26 231 Patrice Nadeau
* Redmine 3.4.6
27 32 Patrice Nadeau
28 214 Patrice Nadeau
### Prérequis
29 1 Patrice Nadeau
30
Un serveur *LAMP(Linux, Apache, MySQL, PHP)* [[guides_opensuse:|openSUSE]] *fonctionnel*.
31 56 Patrice Nadeau
32 44 Patrice Nadeau
Les logiciels supplémentaires suivants :
33 207 Patrice Nadeau
34 225 Patrice Nadeau
    zypper install libmysqlclient-devel ruby-2.5 ruby2.5-devel ImageMagick ImageMagick-devel libxml2-devel libxslt-devel libmariadb-devl git gcc make gcc-c++
35 32 Patrice Nadeau
36 214 Patrice Nadeau
### MySQL
37 94 Patrice Nadeau
38 32 Patrice Nadeau
Création de la base de donnés.
39
Substituer les items suivants à votre choix :
40 214 Patrice Nadeau
41 32 Patrice Nadeau
* redmine : Usager pour la base de donnés.
42 224 Patrice Nadeau
* password : Mot de passe de la base de données.
43 32 Patrice Nadeau
* db : Nom de la base de donnés.
44
45 1 Patrice Nadeau
Lancer MySQL :
46 32 Patrice Nadeau
47 219 Patrice Nadeau
    mysql -u root -p
48
49 1 Patrice Nadeau
Commandes MySQL :
50
51 219 Patrice Nadeau
    create database db character set utf8;
52
    create user 'redmine'@'localhost' identified by 'password';
53
    grant all privileges on db.* to 'redmine'@'localhost';
54
    commit;
55
    quit;
56
57
58 32 Patrice Nadeau
### Redmine
59 214 Patrice Nadeau
60 225 Patrice Nadeau
L’installation sera faite dans **\srv\redmine** (exemple avec la version 3.4)
61 189 Patrice Nadeau
62 219 Patrice Nadeau
    cd /srv/
63
    svn co http://svn.redmine.org/redmine/branches/3.1-stable redmine
64
    cd redmine
65
    cp config/database.yml.example config/database.yml
66
    cp config/configuration.yml.example config/configuration.yml
67
    mkdir public/plugin_assets
68
69
70 33 Patrice Nadeau
Si un usager MySQL autre que _root_ ou mot de passe diffèrent est utilisé :
71 219 Patrice Nadeau
Éditer le fichier **config/database.yml**, section *Production* et modifier les lignes :
72 1 Patrice Nadeau
73 219 Patrice Nadeau
* **username**
74
* **password**
75 33 Patrice Nadeau
76 219 Patrice Nadeau
Éditer le fichier **config/configuration.yml** et modifier la configuration SMTP.
77
78 214 Patrice Nadeau
### Ruby
79 33 Patrice Nadeau
80 34 Patrice Nadeau
Installation des gems de Ruby
81 1 Patrice Nadeau
82 234 Patrice Nadeau
~~~ bash
83
cd redmine
84
gem install bundler
85
bundle.ruby2.5 install --without development test
86
~~~
87
88 219 Patrice Nadeau
89 1 Patrice Nadeau
### Initialisation
90 214 Patrice Nadeau
91 1 Patrice Nadeau
Création de la cryptographie, de la structure et des donnés de base :
92
93 233 Patrice Nadeau
```bash
94
cd /srv/redmine
95
rake generate_secret_token
96
RAILS_ENV=production rake db:migrate
97
RAILS_ENV=production rake redmine:load_default_data
98
```
99 219 Patrice Nadeau
100 231 Patrice Nadeau
### Test
101 1 Patrice Nadeau
102 231 Patrice Nadeau
Le serveur inclus _webrick_ n'est pas conçu pour être utilisé en production.
103 1 Patrice Nadeau
104 231 Patrice Nadeau
Ouvrir dans le pare-feu le port TCP 3000 (ou simplement desactiver temporairement le parefeu) :
105 214 Patrice Nadeau
106 232 Patrice Nadeau
```bash
107
yast firewall services add tcpport=3000 zone=EXT
108
```
109 45 Patrice Nadeau
110 231 Patrice Nadeau
Se rendre au `server.tld:3000`
111 45 Patrice Nadeau
112 231 Patrice Nadeau
### Apache
113 45 Patrice Nadeau
114 54 Patrice Nadeau
Information provenant de :
115 219 Patrice Nadeau
116 54 Patrice Nadeau
* web : 
117 219 Patrice Nadeau
    * http://martin-denizet.com/install-redmine-2-5-x-with-git-and-subversion-on-debian-with-apache2-rvm-and-passenger/ 
118
    * http://www.redmine.org/projects/redmine/wiki/HowTo_configure_Apache_to_run_Redmine
119
    * http://www.redmine.org/boards/2/topics/43924
120 214 Patrice Nadeau
* livre : "Mastering Redmine":http://shop.oreilly.com/product/9781849519144.do
121 1 Patrice Nadeau
122 166 Patrice Nadeau
### Modules Apache
123
124 46 Patrice Nadeau
> Apache 2.4
125 45 Patrice Nadeau
126
Ajout
127 1 Patrice Nadeau
128 226 Patrice Nadeau
    zypper install libcurl-devel apache2-devel apache2-mod_perl perl-Apache-DBI subversion-server
129 219 Patrice Nadeau
130 45 Patrice Nadeau
Activation des modules Apache
131
132 219 Patrice Nadeau
    a2enmod ssl
133
    a2enmod perl
134
    a2enmod dav
135
    a2enmod dav_svn
136 1 Patrice Nadeau
    a2enmod dav_fs
137 219 Patrice Nadeau
    a2enmod rewrite
138
    a2enmod headers
139
140 224 Patrice Nadeau
Module _Passenger_
141 45 Patrice Nadeau
142 219 Patrice Nadeau
    cd /srv/redmine
143
    gem install passenger
144
    passenger-install-apache2-module.ruby2.1
145 1 Patrice Nadeau
146 90 Patrice Nadeau
Changer les droits sur le fichiers de log
147
148 219 Patrice Nadeau
    chmod 0666 log/production.log
149
150 90 Patrice Nadeau
Créer le dossier des fichiers temporaire
151 219 Patrice Nadeau
152
> Par défaut les fichiers sont dans _/tmp_ mais se font enlever par le « clean-up » journalier et doivent être refait avec un reload d'Apache
153
154
    mkdir tmp/passenger
155 93 Patrice Nadeau
156 214 Patrice Nadeau
### Activation de la configuration
157 46 Patrice Nadeau
158 216 Patrice Nadeau
Créer le fichier **/etc/apache2/conf.d/passenger.conf** et ajouter la configuration inscrite par l'installation.
159 61 Patrice Nadeau
160 215 Patrice Nadeau
Ajouter dans **/etc/apache2/vhosts.d/vhost.conf**
161 45 Patrice Nadeau
162 235 Patrice Nadeau
```
163
<VirtualHost *:80>
164
	# La ligne suivante est nécessaire seulement si plusieurs site web son présents sur le même serveur.
165
	ServerName redmine.yourdomain.com
166
	DocumentRoot /srv/redmine/public
167 1 Patrice Nadeau
168 235 Patrice Nadeau
	RailsEnv production
169
	PassengerAppRoot /srv/redmine
170
	PassengerTempDir /srv/redmine/tmp/passenger
171 215 Patrice Nadeau
172 235 Patrice Nadeau
	<Directory "/srv/redmine/public">
173
		Options Indexes ExecCGI FollowSymLinks
174
		AllowOverride None
175
		Order deny,allow
176
		Require all granted
177
	</Directory>
178
</VirtualHost>
179
```
180 215 Patrice Nadeau
181
Relancer Apache :
182
183 235 Patrice Nadeau
```bash
184
systemctl reload apache2
185
```
186 45 Patrice Nadeau
187 214 Patrice Nadeau
## Post-installation
188 1 Patrice Nadeau
189 68 Patrice Nadeau
A partir d’un navigateur web, se brancher à :
190 1 Patrice Nadeau
191 220 Patrice Nadeau
* Webrick : http://server:3000
192 71 Patrice Nadeau
* Apache : http://server
193 1 Patrice Nadeau
194 69 Patrice Nadeau
Utiliser l’usager *admin* avec le mot de passe *admin*.
195 1 Patrice Nadeau
Vérifier la configuration dans *Administration*, *Information*.
196
197 224 Patrice Nadeau
Si un avertissement apparaît pour l’écriture des répertoires, changer les droits :
198 1 Patrice Nadeau
> Semble être nécessaire que pour Apache
199 82 Patrice Nadeau
200 220 Patrice Nadeau
    cd /srv/redmine
201
    chmod -R 0777 public/plugin_assets
202
    chmod -R 0777 files
203
    chown -R wwwrun:www tmp
204
    # Pour la macro "thumbnails" du wiki, le plugin "redmine_people" nécessite au moins 0775
205
    chmod -R 0777 tmp/thumbnails
206
207 1 Patrice Nadeau
## Personnalisation
208
209
### Ajout d’un logo
210 29 Patrice Nadeau
211 187 Patrice Nadeau
> Cette étape sera à refaire lors d'une mise à jour.
212 1 Patrice Nadeau
213 187 Patrice Nadeau
Les informations viennent de : http://www.redmine.org/projects/redmine/wiki/Howto_add_a_logo_to_your_Redmine_banner
214 36 Patrice Nadeau
215 224 Patrice Nadeau
* Copier le logo dans **/srv/redmine/public/images/logo.png**
216 1 Patrice Nadeau
217 224 Patrice Nadeau
* Modifier le fichier **/srv/redmine/app/views/layouts/base.html.erb**
218 220 Patrice Nadeau
219
* Si on ne veux plus afficher le titre, mettre en commentaire :
220 1 Patrice Nadeau
221 220 Patrice Nadeau
    <!--<h1><%= page_header_title %></h1>-->
222 186 Patrice Nadeau
223
* Ajouter en dessous la ligne 
224 220 Patrice Nadeau
225
    <img src="<%= Redmine::Utils.relative_url_root %>/images/logo.png" style="top-margin: 15px; left-margin: 15px;"/>
226
227 224 Patrice Nadeau
* Relancer Redmine
228 1 Patrice Nadeau
229
### Plugins
230 214 Patrice Nadeau
231 1 Patrice Nadeau
Modules supplémentaires pour ajouter des fonctionnalités à Redmine.
232
233
> Source de problème lors de mise à jour si incompatibilité.
234 172 Patrice Nadeau
235 1 Patrice Nadeau
#### Redmine Rouge
236 209 Patrice Nadeau
237 1 Patrice Nadeau
Permet le support de langage supplémentaire pour l'affichage de la syntaxe d'un code source.
238
239
[Langage supporté](http://rouge.jayferd.us/demo)
240
241 13 Patrice Nadeau
https://github.com/ngyuki/redmine_rouge
242 1 Patrice Nadeau
243 224 Patrice Nadeau
* Installation
244
  
245
        cd /srv/redmine/plugins
246 1 Patrice Nadeau
247 217 Patrice Nadeau
Enlever l'ancienne version (si présente)
248 1 Patrice Nadeau
249 224 Patrice Nadeau
        rm -r redmine_rouge
250 1 Patrice Nadeau
251
Télécharger la nouvelle avec git
252
253 224 Patrice Nadeau
        git clone https://github.com/ngyuki/redmine_rouge.git
254
        cd ..
255
        bundle.ruby2.1 install
256 218 Patrice Nadeau
257 224 Patrice Nadeau
* Relancer redmine
258 218 Patrice Nadeau
259
#### Code Highlight
260 1 Patrice Nadeau
261 74 Patrice Nadeau
http://www.redmine.org/plugins/codehightlight_button
262 5 Patrice Nadeau
263 1 Patrice Nadeau
Bouton permettant de sélectionner du code et d'activer la syntaxe selon un langage.
264 9 Patrice Nadeau
265 224 Patrice Nadeau
* Installation
266 9 Patrice Nadeau
267 224 Patrice Nadeau
        cd /srv/redmine/plugins
268
        git clone https://github.com/mediatainment/redmine_codebutton.git
269
        cd ..
270
        rake redmine:plugins
271
        rake redmine:plugins:migrate RAILS_ENV=production
272 1 Patrice Nadeau
273 224 Patrice Nadeau
* Relancer Redmine
274 218 Patrice Nadeau
    
275 224 Patrice Nadeau
        rcredmine restart
276 10 Patrice Nadeau
277 224 Patrice Nadeau
* Ajout des langages supplémentaires supportées par le « plug-in » _Redmine Rouge_. 
278 220 Patrice Nadeau
279 224 Patrice Nadeau
> Voir [ici](https://github.com/mediatainment/redmine_codebutton/issues/2)
280
281
* Éditer le fichier **/srv/redmine/plugins/redmine_codebutton/assets/javascripts/wiki-codehighlight.js**
282
283 220 Patrice Nadeau
* Ajouter les langages voulus dans la variable *codeRayLanguages*
284 95 Patrice Nadeau
285 224 Patrice Nadeau
* Relancer Apache
286 1 Patrice Nadeau
287 224 Patrice Nadeau
        systemctl reload apache2.service
288 95 Patrice Nadeau
289 98 Patrice Nadeau
#### Wiki Extensions
290 97 Patrice Nadeau
291 214 Patrice Nadeau
Voir #52
292 113 Patrice Nadeau
293 1 Patrice Nadeau
Ajoute des macros au Wiki de Redmine
294 224 Patrice Nadeau
295 1 Patrice Nadeau
> La dernière version est disponible à https://bitbucket.org/haru_iida/redmine_wiki_extensions/downloads
296 115 Patrice Nadeau
297 114 Patrice Nadeau
Parmi les macros ajoutées:
298 118 Patrice Nadeau
299 220 Patrice Nadeau
* Emoticons : Un bouton apparait pour ajouter des « smilley » qui seront afficher en graphique
300 118 Patrice Nadeau
* !{{lastupdated_by}} : affiche le nom de la dernière personne à avoir modifier la page
301 1 Patrice Nadeau
* !{{lastupdated_at}} : affiche la date de la dernière modification de la page
302 118 Patrice Nadeau
* Liste complète à http://www.r-labs.org/projects/r-labs/wiki/Wiki_Extensions_en
303 1 Patrice Nadeau
304 177 Patrice Nadeau
> Des « smilley » non voulus peuvent apparaîtrent dans les wiki déjà en place. L'utilisation de *<notextile><notextile> </notextile></notextile>* seras alors nécessaire.
305 133 Patrice Nadeau
306 130 Patrice Nadeau
Étapes :
307 224 Patrice Nadeau
308 220 Patrice Nadeau
* Installation sur le serveur :
309 114 Patrice Nadeau
310 224 Patrice Nadeau
        cd /srv/redmine/
311
        wget https://bitbucket.org/haru_iida/redmine_wiki_extensions/downloads/redmine_wiki_extensions-0.8.0.zip
312
        unzip redmine_wiki_extensions-0.8.0.zip -d plugins/
313
        rake redmine:plugins:migrate RAILS_ENV=production
314
        systemctl reload apache2.service
315
        rm -r redmine_wiki_extensions-0.8.0.zip
316 220 Patrice Nadeau
317
* Activer le module dans le ou les projets voulus
318
319 224 Patrice Nadeau
* Retrait d'un plug-in
320 220 Patrice Nadeau
321 223 Patrice Nadeau
        cd /srv/redmine
322
        rake redmine:plugins:migrate NAME=plugin_name VERSION=0 RAILS_ENV=production
323
        rm -r plugins/plugin_name
324
        rake db:migrate_plugins RAILS_ENV=production
325 220 Patrice Nadeau
326 214 Patrice Nadeau
## Mise à jour
327 1 Patrice Nadeau
328 228 Patrice Nadeau
> Version 3.4.2 -> 3.4.6
329 101 Patrice Nadeau
330 139 Patrice Nadeau
S’assurer d'avoir les dernières versions des plugins ET qu'il sont compatibles avec la version de Redmine à installer.
331 1 Patrice Nadeau
332 101 Patrice Nadeau
Disponible à http://www.redmine.org/projects/redmine/wiki/Download 
333 1 Patrice Nadeau
334 101 Patrice Nadeau
Mise à jour de Redmine à partir d'une version stable
335
> http://www.redmine.org/projects/redmine/wiki/RedmineUpgrade
336 1 Patrice Nadeau
337 220 Patrice Nadeau
* Arrêter Redmine
338
* Renommer le répertoire actuel
339 1 Patrice Nadeau
340 221 Patrice Nadeau
        cd /srv/
341
        mv redmine redmine.old
342 220 Patrice Nadeau
343
* Télécharger la nouvelle version
344
345 229 Patrice Nadeau
        wget http://www.redmine.org/releases/redmine-3.4.6.tar.gz
346 220 Patrice Nadeau
347
* Décompresser le fichier
348
349 229 Patrice Nadeau
        tar xvf redmine-3.4.6.tar.gz
350
        mv redmine-3.4.6 redmine
351 220 Patrice Nadeau
352
* Copier les anciens fichiers de configurations
353
354 221 Patrice Nadeau
        cp redmine.old/config/configuration.yml redmine/config
355
        cp redmine.old/config/database.yml redmine/config
356
        cp -r redmine.old/files redmine
357 220 Patrice Nadeau
358
* Refaire la sécurité
359
360 221 Patrice Nadeau
        chown -R root:root redmine
361
        # Les commandes suivantes sont nécessaire seulement si Apache est utilisé
362
        # Le même owner que config.ru doit être utiliser pour plusieurs dossier
363
        chown wwwrun:www redmine/config.ru
364
        mkdir redmine/tmp/passenger
365
        chown -R wwwrun:www redmine/tmp
366
        chmod 0777 redmine/public/plugin_assets
367
        chmod -R 0777 redmine/files
368 220 Patrice Nadeau
369
* Ne copier que les « plugins » qui ne sont pas fournis par la nouvelle version de Redmine
370
371 221 Patrice Nadeau
        cp -r redmine.old/plugins/* redmine/plugins
372 220 Patrice Nadeau
373
* Installer les « gems »
374
375 221 Patrice Nadeau
        cd redmine
376 229 Patrice Nadeau
        bundle.ruby2.5 install --without development test
377 220 Patrice Nadeau
378
* Mise à jour (base de donnés, « plugins ») et ménage :
379
380 229 Patrice Nadeau
        bundle.ruby2.5 exec rake generate_secret_token
381
        bundle.ruby2.5 exec rake db:migrate RAILS_ENV=production
382
        bundle.ruby2.5 exec rake redmine:plugins:migrate RAILS_ENV=production
383
        bundle.ruby2.5 exec rake tmp:cache:clear tmp:sessions:clear
384 220 Patrice Nadeau
385
* Remettre le logo (facultatif)
386
387 221 Patrice Nadeau
        cd ..
388
        cp redmine.old/public/images/logo.png redmine/public/images/
389
        cp redmine.old/app/views/layouts/base.html.erb redmine/app/views/layouts/
390 220 Patrice Nadeau
391
* Réinstaller le module « Passenger » (voir plus haut)
392
* Relancer Redmine 
393
* Vérifier 
394
    * Administration
395
        * Informations
396
        * Plugins
397
        * Projects
398
        * Users
399
        * Roles & permissions
400
    * Essayer d'attacher un fichier à un projet
401
    * Essayer d’accéder au calendrier d'un projet
402
403 214 Patrice Nadeau
## Copie de sécurité
404 40 Patrice Nadeau
405 163 Patrice Nadeau
[[Copie de sécurité]]
406
407 5 Patrice Nadeau
408 39 Patrice Nadeau
409 214 Patrice Nadeau
## Dépannage
410 1 Patrice Nadeau
411 214 Patrice Nadeau
### Mot de passe perdu
412 1 Patrice Nadeau
413
Le mot de passe admin par défaut est en _hash Sha1_ : *da3174755c5e82a436b6c7ff87c873ee50d6654b* et est *admin.*
414
415 214 Patrice Nadeau
### Le service tombe « DEAD » à chaque fois (webrick)
416 1 Patrice Nadeau
417 220 Patrice Nadeau
Effacer le fichier **/srv/redmine/tmp/pids/server.pid**.