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