Wiki source code of Upgrading

Version 25.1 by Vincent Massol on 2017/11/21

Hide last authors
Ecaterina Moraru (Valica) 21.2 1 {{box cssClass="floatinginfobox" title="**Contents**"}}
Thomas Mortagne 2.1 2 {{toc/}}
Ecaterina Moraru (Valica) 21.2 3 {{/box}}
Guillaume Fenollar 1.1 4
Vincent Massol 10.1 5 = Upgrading the standard distribution =
6
7 If you've installed the standard distribution (##exe##, ##zip## or ##jar## distribution) and you wish to upgrade it, the simplest is to download the new version and install it as you did the first time. Just make sure you don't install the new version over the old one (both installations need to exist).
8
Ecaterina Moraru (Valica) 21.3 9 Then copy [[the configuration files and the permanent directory>>Documentation.AdminGuide.Backup]] from the old installation to the new one ({{warning}}Best is to not copy the ##solr/## subdirectory since the SOLR schema could have changed and it's best to let XWiki reindex using the new schema{{/warning}}). Ideally you should not copy over the configuration files exactly since the new version could have added new configuration options and thus ideally you should do a merge instead of a pure copy. Another strategy is to use the new configuration files, not copy over the old configuration files and instead manually edit the new configuration to make the same changes as you have may done before (If you've never touched the configuration files then there's nothing to do obviously!).
Vincent Massol 10.1 10
Vincent Massol 16.1 11 If you're on a unix system here are some commands that may help you doing the merge instead of doing it fully manually:
12
13 {{code language="none"}}
14 ## Note: We're assuming that "xwiki.new" is a symbolic likns that points to the location
15 ## where the new xwiki version is located and that "xwiki" is the location of the previous
16 ## xwiki installation.
17 mv xwiki.new/WEB-INF/web.xml xwiki.new/WEB-INF/web.xml.ori; sudo sdiff xwiki/WEB-INF/web.xml xwiki.new/WEB-INF/web.xml.ori -B -W -E -o xwiki.new/WEB-INF/web.xml
18 mv xwiki.new/WEB-INF/xwiki.cfg xwiki.new/WEB-INF/xwiki.cfg.ori; sudo sdiff xwiki/WEB-INF/xwiki.cfg xwiki.new/WEB-INF/xwiki.cfg.ori -B -W -E -o xwiki.new/WEB-INF/xwiki.cfg
19 mv xwiki.new/WEB-INF/xwiki.properties xwiki.new/WEB-INF/xwiki.properties.ori; sudo sdiff xwiki/WEB-INF/xwiki.properties xwiki.new/WEB-INF/xwiki.properties.ori -B -W -E -o xwiki.new/WEB-INF/xwiki.properties
20 mv xwiki.new/WEB-INF/struts-config.xml xwiki.new/WEB-INF/struts-config.xml.ori; sudo sdiff xwiki/WEB-INF/struts-config.xml xwiki.new/WEB-INF/struts-config.xml.ori -B -W -E -o xwiki.new/WEB-INF/struts-config.xml
21 mv xwiki.new/WEB-INF/classes/logback.xml xwiki.new/WEB-INF/classes/logback.xml.ori; sudo sdiff xwiki/WEB-INF/classes/logback.xml xwiki.new/WEB-INF/classes/logback.xml.ori -B -W -E -o xwiki.new/WEB-INF/classes/logback.xml
22 {{/code}}
23
Vincent Massol 21.1 24 {{include reference="UpgradeDatabase"/}}
Vincent Massol 10.1 25
Clemens Robbenhaar 14.1 26 = Upgrading from the Debian package =
27
Thomas Mortagne 18.1 28 == Update packages index ==
29
30 {{code language="bash"}}
Clemens Robbenhaar 14.1 31 sudo apt-get update
Thomas Mortagne 18.1 32 {{/code}}
33
34 == Package upgrade ==
35
36 Usually you will do:
37
38 {{code language="bash"}}
Clemens Robbenhaar 14.1 39 sudo apt-get upgrade
40 {{/code}}
41
Thomas Mortagne 18.1 42 This will upgrade all packages, not just XWiki. If you want to avoid all the other packages and only update XWiki, you can use ##sudo apt-get install xwiki-tomcat8-mysql## (change xwiki-tomcat8-mysql for the top level package you installed if you installed something else).
Clemens Robbenhaar 14.1 43
Thomas Mortagne 18.1 44 {{warning}}
Thomas Mortagne 24.1 45 When upgrading from pre 9.5 version ##apt-get upgrade## won't find anything because the package name changed ([[XWiki Enterprise does not exist anymore>>Blog.XWiki Enterprise is dead, long live XWiki!]]).
Clemens Robbenhaar 14.1 46
Thomas Mortagne 18.1 47 All you have to do in this case is install the ##xwiki-tomcat*## package corresponding to the top level ##xwiki-enterprise-tomcat*## one you installed previously. For example if you had ##xwiki-enterprise-tomcat8-mysql## 9.4 you should do {{code langage="bash"}}sudo apt-get install xwiki-tomcat8-mysql{{/code}}.
48 {{/warning}}
49
50 == Pages upgrade ==
51
Ecaterina Moraru (Valica) 21.3 52 However after upgrading you still need to install the new UI; see [[Upgrading wiki documents>>Documentation.AdminGuide.Upgrade#HUpgradingwikidocuments]] below.
Thomas Mortagne 18.1 53
Vincent Massol 9.1 54 = Upgrading the webapp =
Guillaume Fenollar 1.1 55
Vincent Massol 12.2 56 The general strategy is to [[download the new WAR distribution>>xwiki:Main.Download]] and to replace your current installed WAR with it. However make sure you don't copy on top since this could leave some old files around which would make XWiki fail (like if old JARs are lying around in ##WEB-INF/lib##). In addition you would override some XWiki configuration files located in ##WEB-INF## (##xwiki.properties## and ##xwiki.cfg## to name just two).
Guillaume Fenollar 1.1 57
Ecaterina Moraru (Valica) 21.3 58 Thus, before replacing your current WAR, make sure you [[back it up, including configuration and data files>>Documentation.AdminGuide.Backup]].
Guillaume Fenollar 1.1 59
Vincent Massol 16.4 60 Also you need to ensure that you use the same XWiki Permanent directory (configured in ##WEB-INF/xwiki.properties## using the ##environment.permanentDirectory## property). {{warning}}Best is to not copy the ##solr/## subdirectory since the SOLR schema could have changed and it's best to let XWiki reindex using the new schema{{/warning}}
Vincent Massol 13.1 61
Vincent Massol 3.1 62 Some additional operations may be required for upgrading and you must check the [[release notes>>xwiki:ReleaseNotes.WebHome]] for all the versions from the version you're upgrading from up to the new version you're installing. It's also possible that new features are available and that some configuration files need to be modified. If this is the case then it'll be specified in the release notes.
63
Vincent Massol 21.1 64 {{include reference="UpgradeDatabase"/}}
Guillaume Fenollar 1.1 65
Vincent Massol 9.1 66 == Invalid Extensions ==
67
68 Also note that when you upgrade, some extensions that were previously valid may become invalid (for example they may have been renamed, removed or have versions that do not match the version of the WAR you've installed as is the case with the example below). In this case you'll see in the console messages such as:
69
70 {{code language="noformat"}}
71 2013-12-02 11:43:01,688 [localhost-startStop-1] WARN ltInstalledExtensionRepository - Invalid extension [org.xwiki.enterprise:xwiki-enterprise-ui-common-5.2.1] on namespace [wiki:xwiki]
72 2013-12-02 11:43:01,688 [localhost-startStop-1] WARN ltInstalledExtensionRepository - Invalid extension [org.xwiki.platform:xwiki-platform-workspace-ui-5.2.1] on namespace [wiki:xwiki]
73 2013-12-02 11:43:01,688 [localhost-startStop-1] WARN ltInstalledExtensionRepository - Invalid extension [org.xwiki.enterprise:xwiki-enterprise-ui-mainwiki-5.2.1] on namespace [wiki:xwiki]
74 2013-12-02 11:43:01,689 [localhost-startStop-1] WARN ltInstalledExtensionRepository - Invalid extension [org.xwiki.enterprise:xwiki-enterprise-ui-wiki-all-5.2.1] on namespace [wiki:workspacetemplate]
75 {{/code}}
76
77 These are just warnings and don't affect that stability of your instance. Actually the Distribution Wizard you get (see the next section on "Upgrading wiki documents") will ask you to upgrade those invalid extensions and will remove the old versions that became invalid.
78
Vincent Massol 19.1 79 = Upgrading from Docker =
80
81 If you've installed XWiki by using the official XWiki Docker image, [[follow the instructions there>>https://hub.docker.com/_/xwiki/]] for upgrading it.
82
Thomas Mortagne 2.1 83 = Upgrading wiki documents =
Guillaume Fenollar 1.1 84
Vincent Massol 25.1 85 The recommended way to upgrade an XWiki installation is to use the [[Distribution Wizard>>platform:Features.DistributionWizard]] which is automatically triggered after you upgrade the XWiki WAR. It allows you to automatically upgrade extensions installed in your wiki, supporting automatic merges and conflict resolution.
Guillaume Fenollar 1.1 86
Vincent Massol 25.1 87 {{warning}}
88 Make sure you run the Distribution Wizard (DW) with a user having Programming Rights. The following pages require being saved by a user having Programming Rights to work correctly and they may happen to have been modified and thus the DW may need to modify them:
89 * AppWithinMinutes.DynamicMessageTool (kept for backward-compatibility, not used)
90 * AnnotationCode.Style
91 * AppWithinMinutes.LiveTableEditSheet
92 * AppWithinMinutes.ClassEditSheet
93 * Main.Activity
94 * AnnotationCode.Script
95 * XWiki.OfficeImporterAdmin
96 * Filter.WebHome
97 * XWiki.DeletedAttachments (Fixed in XWiki 9.8RC1)
98 * XWiki.DeletedDocuments (Fixed in XWiki 9.8RC1)
99 {{/warning}}
100
Vincent Massol 7.1 101 Prior to XWiki 4.3 you had to perform this manually as explained below.
102
103 == Manual Upgrade ==
104
Ecaterina Moraru (Valica) 21.3 105 As mentioned in the [[Installing the Default Wiki XAR section>>Documentation.AdminGuide.InstallationWAR#HInstallingtheDefaultWikiXAR]] you should be very careful and when doing the import make sure you selectively decide what pages you wish to import. More specifically the following pages should be imported with great care:
Vincent Massol 7.1 106
Manuel Smeria 6.2 107 * XWiki.XWikiPreferences: This page contains some configuration of your wiki (it overrides the configuration defined in ##xwiki.cfg##). If you import a new version of this page you'll lose any customization you may have made such as the skin to use, the rights for your wiki, etc.
108 * XWiki.WebPreferences, Main.WebPreferences, and all other spaces WebPreferences pages: Same as XWiki.XWikiPreferences but at the level of a space
109 * XWiki.XWikiAllGroup (list of registered users) and XWiki.AdminGroup (list of Admins): If you have existing users and import a new version of these pages, you'll find that your users do not belong to these groups anymore and thus may not be able to edit pages, log in, etc. You'll need to add them again to the right groups
110 * XWiki.Admin: This page contains the Admin user with the default password. If you import it you'll create a security hole. Thus it's very important not to import this page
Vincent Massol 6.1 111 * *.*Config: These are configuration pages and thus must not be overwritten. Some examples:
Manuel Smeria 6.2 112 ** XWiki.RegistrationConfig: Contains Registration configuration of your wiki
113 ** Invitation.InvitationConfig: Configuration for the [[Invitation Application>>extensions:Extension.Invitation Application]]
114 * XWiki.XWikiServerXwiki (multi wiki): This page contains the server descriptors and wiki properties
Guillaume Fenollar 1.1 115 * Any other page you have modified, such as Main.WebHome, a modified Panel, etc.
116
Thomas Mortagne 2.1 117 == Let's clean it up ==
Guillaume Fenollar 1.1 118
Vincent Massol 24.2 119 * Expand the XWiki WAR that you installed in your servlet container (the one that contains the JDBC drivers to access your database) into a new folder, using ##jar xvf xwiki-<suffix>.war## or avoid this step if you performed an export/import data migration (you already expanded it)
Manuel Smeria 6.2 120 * Merge your old configuration files you have backed up (see above) with the new versions. Take care that if some changes were already made (probably because of database configuration when you installed the JDBC drivers) they could be lost, so take care when making these changes
121 * Install this new folder as the ##xwiki## application in your servlet container (by copying the folder to the servlet filesystem space or by packing it in a WAR file and deploying it in the container's administration interface)
Guillaume Fenollar 1.1 122
Manuel Smeria 6.2 123 At this point all is set and you can experience your old wiki data over the new XWiki core!
Vincent Massol 11.1 124
Vincent Massol 12.1 125 = Alternative: Export and Reimport =
Vincent Massol 11.1 126
Ecaterina Moraru (Valica) 21.3 127 There are cases when it's a better solution to [[export your current content as a XAR>>Documentation.AdminGuide.ImportExport]] and [[reimport it>>Documentation.AdminGuide.ImportExport]] into [[a new instance>>Documentation.AdminGuide.Installation]]. For example this would be a good solution if you have a very old version of XWiki and wish to move to a new version.
Vincent Massol 11.1 128
129 This solution should work because the XWiki project takes great pride in being careful about backward compatibility and content created several years ago should still work well in new versions of XWiki. For example as of now, we still support XWiki Syntax 1.0 (even though it's been replaced by XWiki Syntax 2.0+ several years ago).
130
131 Some tips:
Thomas Mortagne 18.1 132
Vincent Massol 11.1 133 * Make sure to only import your own content pages and not the default XWiki pages since you’d overwrite the ones provided in new XWiki install.
134 * You may get issues when trying to export a large XAR. In that case you may want to try installing [[one of the Export Extensions>>extensions:Main.Tags?do=viewTag&tag=export]] but you'll need to verify that the one you install will work on your old version of XWiki.
135
Vincent Massol 17.1 136 = Downgrading =
137
138 {{warning}}
139 You should try to upgrade to a version that fixes the issue you're facing instead of downgrading. However if you really need to downgrade, read on...
140 {{/warning}}
141
Ecaterina Moraru (Valica) 21.3 142 A previous upgrade may have modified the database schema and the data saved in the permanent directory may also have incompatible changes. Thus the best strategy for downgrading is to [[export your wiki pages as XAR>>Documentation.AdminGuide.Backup#HUsingtheXWikiExportfeature]] (the ones having your content, not the default wiki pages provided by the XWiki distribution or installed Extensions). Then install the older XWiki version and re-install optional Extensions that you need. Then reimport your XAR in it.

Get Connected