diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-02-03 18:07:15 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2016-02-03 18:12:14 +0100 |
commit | dc25d66b37eee1ca074749ca0991015674c26ed8 (patch) | |
tree | 4174d6b61a99715cfb88fa52f8e6728f8644e408 /server | |
parent | 073a360bee8214fc91da28295c6e22efbff57e60 (diff) | |
download | sonarqube-dc25d66b37eee1ca074749ca0991015674c26ed8.tar.gz sonarqube-dc25d66b37eee1ca074749ca0991015674c26ed8.zip |
SONAR-5947 Simplify the "System Upgrade" tab of the "Update Center" page
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-web/src/main/js/apps/update-center/templates/update-center-system-update.hbs | 37 |
1 files changed, 20 insertions, 17 deletions
diff --git a/server/sonar-web/src/main/js/apps/update-center/templates/update-center-system-update.hbs b/server/sonar-web/src/main/js/apps/update-center/templates/update-center-system-update.hbs index bc50d859efc..58153168950 100644 --- a/server/sonar-web/src/main/js/apps/update-center/templates/update-center-system-update.hbs +++ b/server/sonar-web/src/main/js/apps/update-center/templates/update-center-system-update.hbs @@ -33,24 +33,27 @@ <div class="pull-left spacer-right"> <strong>How to upgrade</strong> </div> - <ul class="js-plugin-update-steps list-styled overflow-hidden bordered-left"> - <li class="little-spacer-bottom">Stop SonarQube</li> - <li class="little-spacer-bottom"><a href="{{downloadUrl}}" target="_blank">Download</a> and install - SonarQube {{version}} after having carefully read the - <a href="http://redirect.sonarsource.com/doc/upgrading.html" target="_blank">upgrade guide</a>. + <ol class="js-plugin-update-steps list-styled overflow-hidden bordered-left"> + <li class="little-spacer-bottom"> + Download SonarQube and start it on an empty DB (the bundled H2 DB for instance). </li> - {{#each plugins.incompatible}} - <li class="little-spacer-bottom"> - Uninstall the plugin {{name}} which is not compatible with SonarQube {{../version}}. - </li> - {{/each}} - {{#each plugins.requireUpdate}} - <li class="little-spacer-bottom"> - Replace current version of plugin {{name}} by version {{version}}. - </li> - {{/each}} - <li>Start SonarQube</li> - </ul> + <li class="little-spacer-bottom"> + Install (from the update center) every plugin you want to have. + </li> + <li class="little-spacer-bottom"> + Install your own made plugins (if any). + </li> + <li class="little-spacer-bottom"> + Update the <code>conf/sonar.properties</code> file to use relevant former configuration (that includes at + least the connection to your production DB). + </li> + <li class="little-spacer-bottom"> + Make sure that the previous version of SonarQube running on your production DB is stopped. + </li> + <li> + Restart the new SonarQube instance: you're done! + </li> + </ol> </td> </tr> </table> |