Wiki » Historique » Version 237
Patrice Nadeau, 2018-08-17 13:24
| 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 | 236 | Patrice Nadeau | ```bash |
| 201 | cd /srv/redmine |
||
| 202 | chmod -R 0777 public/plugin_assets |
||
| 203 | chmod -R 0777 files |
||
| 204 | chown -R wwwrun:www tmp |
||
| 205 | # Pour la macro "thumbnails" du wiki, le plugin "redmine_people" nécessite au moins 0775 |
||
| 206 | chmod -R 0777 tmp/thumbnails |
||
| 207 | ``` |
||
| 208 | |||
| 209 | 220 | Patrice Nadeau | |
| 210 | 1 | Patrice Nadeau | ## Personnalisation |
| 211 | |||
| 212 | ### Ajout d’un logo |
||
| 213 | 29 | Patrice Nadeau | |
| 214 | 187 | Patrice Nadeau | > Cette étape sera à refaire lors d'une mise à jour. |
| 215 | 1 | Patrice Nadeau | |
| 216 | 187 | Patrice Nadeau | Les informations viennent de : http://www.redmine.org/projects/redmine/wiki/Howto_add_a_logo_to_your_Redmine_banner |
| 217 | 36 | Patrice Nadeau | |
| 218 | 224 | Patrice Nadeau | * Copier le logo dans **/srv/redmine/public/images/logo.png** |
| 219 | 1 | Patrice Nadeau | |
| 220 | 224 | Patrice Nadeau | * Modifier le fichier **/srv/redmine/app/views/layouts/base.html.erb** |
| 221 | 220 | Patrice Nadeau | |
| 222 | * Si on ne veux plus afficher le titre, mettre en commentaire : |
||
| 223 | 1 | Patrice Nadeau | |
| 224 | 220 | Patrice Nadeau | <!--<h1><%= page_header_title %></h1>--> |
| 225 | 186 | Patrice Nadeau | |
| 226 | * Ajouter en dessous la ligne |
||
| 227 | 220 | Patrice Nadeau | |
| 228 | <img src="<%= Redmine::Utils.relative_url_root %>/images/logo.png" style="top-margin: 15px; left-margin: 15px;"/> |
||
| 229 | |||
| 230 | 224 | Patrice Nadeau | * Relancer Redmine |
| 231 | 1 | Patrice Nadeau | |
| 232 | ### Plugins |
||
| 233 | 214 | Patrice Nadeau | |
| 234 | 1 | Patrice Nadeau | Modules supplémentaires pour ajouter des fonctionnalités à Redmine. |
| 235 | |||
| 236 | > Source de problème lors de mise à jour si incompatibilité. |
||
| 237 | 172 | Patrice Nadeau | |
| 238 | 1 | Patrice Nadeau | #### Redmine Rouge |
| 239 | 209 | Patrice Nadeau | |
| 240 | 1 | Patrice Nadeau | Permet le support de langage supplémentaire pour l'affichage de la syntaxe d'un code source. |
| 241 | |||
| 242 | [Langage supporté](http://rouge.jayferd.us/demo) |
||
| 243 | |||
| 244 | 13 | Patrice Nadeau | https://github.com/ngyuki/redmine_rouge |
| 245 | 1 | Patrice Nadeau | |
| 246 | 224 | Patrice Nadeau | * Installation |
| 247 | |||
| 248 | cd /srv/redmine/plugins |
||
| 249 | 1 | Patrice Nadeau | |
| 250 | 217 | Patrice Nadeau | Enlever l'ancienne version (si présente) |
| 251 | 1 | Patrice Nadeau | |
| 252 | 224 | Patrice Nadeau | rm -r redmine_rouge |
| 253 | 1 | Patrice Nadeau | |
| 254 | Télécharger la nouvelle avec git |
||
| 255 | |||
| 256 | 224 | Patrice Nadeau | git clone https://github.com/ngyuki/redmine_rouge.git |
| 257 | cd .. |
||
| 258 | bundle.ruby2.1 install |
||
| 259 | 218 | Patrice Nadeau | |
| 260 | 224 | Patrice Nadeau | * Relancer redmine |
| 261 | 218 | Patrice Nadeau | |
| 262 | 98 | Patrice Nadeau | #### Wiki Extensions |
| 263 | 97 | Patrice Nadeau | |
| 264 | 214 | Patrice Nadeau | Voir #52 |
| 265 | 113 | Patrice Nadeau | |
| 266 | 1 | Patrice Nadeau | Ajoute des macros au Wiki de Redmine |
| 267 | 224 | Patrice Nadeau | |
| 268 | 1 | Patrice Nadeau | > La dernière version est disponible à https://bitbucket.org/haru_iida/redmine_wiki_extensions/downloads |
| 269 | 115 | Patrice Nadeau | |
| 270 | 114 | Patrice Nadeau | Parmi les macros ajoutées: |
| 271 | 118 | Patrice Nadeau | |
| 272 | 220 | Patrice Nadeau | * Emoticons : Un bouton apparait pour ajouter des « smilley » qui seront afficher en graphique |
| 273 | 118 | Patrice Nadeau | * !{{lastupdated_by}} : affiche le nom de la dernière personne à avoir modifier la page |
| 274 | 1 | Patrice Nadeau | * !{{lastupdated_at}} : affiche la date de la dernière modification de la page |
| 275 | 118 | Patrice Nadeau | * Liste complète à http://www.r-labs.org/projects/r-labs/wiki/Wiki_Extensions_en |
| 276 | 1 | Patrice Nadeau | |
| 277 | 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. |
| 278 | 133 | Patrice Nadeau | |
| 279 | 130 | Patrice Nadeau | Étapes : |
| 280 | 224 | Patrice Nadeau | |
| 281 | 220 | Patrice Nadeau | * Installation sur le serveur : |
| 282 | 114 | Patrice Nadeau | |
| 283 | 224 | Patrice Nadeau | cd /srv/redmine/ |
| 284 | wget https://bitbucket.org/haru_iida/redmine_wiki_extensions/downloads/redmine_wiki_extensions-0.8.0.zip |
||
| 285 | unzip redmine_wiki_extensions-0.8.0.zip -d plugins/ |
||
| 286 | rake redmine:plugins:migrate RAILS_ENV=production |
||
| 287 | systemctl reload apache2.service |
||
| 288 | rm -r redmine_wiki_extensions-0.8.0.zip |
||
| 289 | 220 | Patrice Nadeau | |
| 290 | * Activer le module dans le ou les projets voulus |
||
| 291 | |||
| 292 | 224 | Patrice Nadeau | * Retrait d'un plug-in |
| 293 | 220 | Patrice Nadeau | |
| 294 | 223 | Patrice Nadeau | cd /srv/redmine |
| 295 | rake redmine:plugins:migrate NAME=plugin_name VERSION=0 RAILS_ENV=production |
||
| 296 | rm -r plugins/plugin_name |
||
| 297 | rake db:migrate_plugins RAILS_ENV=production |
||
| 298 | 220 | Patrice Nadeau | |
| 299 | 214 | Patrice Nadeau | ## Mise à jour |
| 300 | 1 | Patrice Nadeau | |
| 301 | 228 | Patrice Nadeau | > Version 3.4.2 -> 3.4.6 |
| 302 | 101 | Patrice Nadeau | |
| 303 | 139 | Patrice Nadeau | S’assurer d'avoir les dernières versions des plugins ET qu'il sont compatibles avec la version de Redmine à installer. |
| 304 | 1 | Patrice Nadeau | |
| 305 | 101 | Patrice Nadeau | Disponible à http://www.redmine.org/projects/redmine/wiki/Download |
| 306 | 1 | Patrice Nadeau | |
| 307 | 101 | Patrice Nadeau | Mise à jour de Redmine à partir d'une version stable |
| 308 | > http://www.redmine.org/projects/redmine/wiki/RedmineUpgrade |
||
| 309 | 1 | Patrice Nadeau | |
| 310 | 220 | Patrice Nadeau | * Arrêter Redmine |
| 311 | * Renommer le répertoire actuel |
||
| 312 | 1 | Patrice Nadeau | |
| 313 | 221 | Patrice Nadeau | cd /srv/ |
| 314 | mv redmine redmine.old |
||
| 315 | 220 | Patrice Nadeau | |
| 316 | * Télécharger la nouvelle version |
||
| 317 | |||
| 318 | 229 | Patrice Nadeau | wget http://www.redmine.org/releases/redmine-3.4.6.tar.gz |
| 319 | 220 | Patrice Nadeau | |
| 320 | * Décompresser le fichier |
||
| 321 | |||
| 322 | 229 | Patrice Nadeau | tar xvf redmine-3.4.6.tar.gz |
| 323 | mv redmine-3.4.6 redmine |
||
| 324 | 220 | Patrice Nadeau | |
| 325 | * Copier les anciens fichiers de configurations |
||
| 326 | |||
| 327 | 221 | Patrice Nadeau | cp redmine.old/config/configuration.yml redmine/config |
| 328 | cp redmine.old/config/database.yml redmine/config |
||
| 329 | cp -r redmine.old/files redmine |
||
| 330 | 220 | Patrice Nadeau | |
| 331 | * Refaire la sécurité |
||
| 332 | |||
| 333 | 221 | Patrice Nadeau | chown -R root:root redmine |
| 334 | # Les commandes suivantes sont nécessaire seulement si Apache est utilisé |
||
| 335 | # Le même owner que config.ru doit être utiliser pour plusieurs dossier |
||
| 336 | chown wwwrun:www redmine/config.ru |
||
| 337 | mkdir redmine/tmp/passenger |
||
| 338 | chown -R wwwrun:www redmine/tmp |
||
| 339 | chmod 0777 redmine/public/plugin_assets |
||
| 340 | chmod -R 0777 redmine/files |
||
| 341 | 220 | Patrice Nadeau | |
| 342 | * Ne copier que les « plugins » qui ne sont pas fournis par la nouvelle version de Redmine |
||
| 343 | |||
| 344 | 221 | Patrice Nadeau | cp -r redmine.old/plugins/* redmine/plugins |
| 345 | 220 | Patrice Nadeau | |
| 346 | * Installer les « gems » |
||
| 347 | |||
| 348 | 221 | Patrice Nadeau | cd redmine |
| 349 | 229 | Patrice Nadeau | bundle.ruby2.5 install --without development test |
| 350 | 220 | Patrice Nadeau | |
| 351 | * Mise à jour (base de donnés, « plugins ») et ménage : |
||
| 352 | |||
| 353 | 229 | Patrice Nadeau | bundle.ruby2.5 exec rake generate_secret_token |
| 354 | bundle.ruby2.5 exec rake db:migrate RAILS_ENV=production |
||
| 355 | bundle.ruby2.5 exec rake redmine:plugins:migrate RAILS_ENV=production |
||
| 356 | bundle.ruby2.5 exec rake tmp:cache:clear tmp:sessions:clear |
||
| 357 | 220 | Patrice Nadeau | |
| 358 | * Remettre le logo (facultatif) |
||
| 359 | |||
| 360 | 221 | Patrice Nadeau | cd .. |
| 361 | cp redmine.old/public/images/logo.png redmine/public/images/ |
||
| 362 | cp redmine.old/app/views/layouts/base.html.erb redmine/app/views/layouts/ |
||
| 363 | 220 | Patrice Nadeau | |
| 364 | * Réinstaller le module « Passenger » (voir plus haut) |
||
| 365 | * Relancer Redmine |
||
| 366 | * Vérifier |
||
| 367 | * Administration |
||
| 368 | * Informations |
||
| 369 | * Plugins |
||
| 370 | * Projects |
||
| 371 | * Users |
||
| 372 | * Roles & permissions |
||
| 373 | * Essayer d'attacher un fichier à un projet |
||
| 374 | * Essayer d’accéder au calendrier d'un projet |
||
| 375 | |||
| 376 | 214 | Patrice Nadeau | ## Copie de sécurité |
| 377 | 40 | Patrice Nadeau | |
| 378 | 163 | Patrice Nadeau | [[Copie de sécurité]] |
| 379 | |||
| 380 | 5 | Patrice Nadeau | |
| 381 | 39 | Patrice Nadeau | |
| 382 | 214 | Patrice Nadeau | ## Dépannage |
| 383 | 1 | Patrice Nadeau | |
| 384 | 214 | Patrice Nadeau | ### Mot de passe perdu |
| 385 | 1 | Patrice Nadeau | |
| 386 | Le mot de passe admin par défaut est en _hash Sha1_ : *da3174755c5e82a436b6c7ff87c873ee50d6654b* et est *admin.* |
||
| 387 | |||
| 388 | 214 | Patrice Nadeau | ### Le service tombe « DEAD » à chaque fois (webrick) |
| 389 | 1 | Patrice Nadeau | |
| 390 | 220 | Patrice Nadeau | Effacer le fichier **/srv/redmine/tmp/pids/server.pid**. |