Wiki source code of Installation

Version 28.1 by Ludovic Dubost on 2009/10/09

Hide last authors
Ludovic Dubost 28.1 1 {{velocity filter="none"}}
2 {{html clean="false" wiki="true"}}
Raffaello Pelagalli 13.1 3 #startfloatingbox()
Ludovic Dubost 28.1 4 **Contents**
5
6 {{toc start="2" depth="3" numbered=""/}}
Raffaello Pelagalli 13.1 7 #endfloatingbox()
8
Ludovic Dubost 28.1 9 = Installation =
hungpt 1.95 10
Vincent Massol 1.124 11 XWiki is a Java-based wiki and runs on a Servlet Container such as Tomcat, Jetty, JBoss, WebLogic, WebSphere, etc. It also uses a relational database to store its content. It can run on almost any database (HSQL, MySQL, etc) but XWiki and the database need to be setup correctly.
Ludovic Dubost 28.1 12 <p/>
fax 1.96 13 There are 2 solutions when installing XWiki:
hungpt 1.95 14
Ludovic Dubost 28.1 15 * Use the [[Standalone distribution>>xwiki:Main.Download]] which already packages a Servlet Container (Jetty) and a database (HSQL). This is the recommended option for first time XWiki users and for users who wish to quickly try out XWiki.
16 * Use the [[WAR distribution>>xwiki:Main.Download]] and configure both your container and your database to work with it.
17 <p/>
18 If you're instead upgrading an existing XWiki install check the [[Upgrade instructions>>#HUpgradinganXWikiInstallation]] below.
19 <p/>
Vincent Massol 14.3 20 Pick one of the trails in the outline on the right to get started.
Ludovic Dubost 28.1 21 <p/>
22 Once you've finished the installation check the other topics in the [[Admin Guide>>AdminGuide.WebHome]] for configuring and [[securing>>Security]] your wiki.
23 <p/>
24 {{info}}If you want to make manual installation or need to migrate an existing XWiki installation, check the [[Release Notes>>xwiki:Main.ReleaseNotes]].{{/info}}
Vincent Massol 1.112 25
Ludovic Dubost 28.1 26 == Tutorials ==
hungpt 1.95 27
Vincent Massol 14.3 28 Tutorials are step by step procedures to install XWiki for a specific configuration. You can choose to follow one of them or follow the instructions in the sections below.
Ludovic Dubost 28.1 29 <p/>
30 {{warning}}Tutorials external to the xwiki.org site have not been validated for correctness by the XWiki dev team and it's also possible that they are out of date.{{/warning}}
Vincent Massol 14.3 31
Ludovic Dubost 28.1 32 * [[XWiki On Windows (French)>>http://agoncalves.developpez.com/tutoriels/xwiki/creer-un-site-associatif/]]
33 * [[XWiki On Debian 4 (Etch) - Tomcat - PostgreSQL (or MySQL) (English)>>http://www.howtoforge.com/xwiki-tomcat-mysql-debian-etch]]
34 * [[XWiki On Debian 4 (Etch) - Tomcat - PostgreSQL (or MySQL) (German)>>http://www.howtoforge.de/howto/xwiki-on-debian-4-etch-tomcat-mysql]]
Vincent Massol 14.3 35
Ludovic Dubost 28.1 36 == Prerequisites ==
Vincent Massol 14.3 37
fax 1.96 38 You'll need to have Java 5 installed.
39
Ludovic Dubost 28.1 40 == Installing the Standalone distribution ==
fax 1.96 41
Vincent Massol 1.104 42 This is by far the easiest way to install XWiki. We are offering 3 packaging for ease of installation:
Ludovic Dubost 28.1 43
Ludovic Dubost 21.1 44 * A Windows exe. Simply execute it and follow the instructions. Do not close the DOS Windows that shows up. This is the XWiki server running, instead point your browser to http://www.localhost:8080/.
Vincent Massol 1.124 45 * A generic Installer that works on all platforms. It requires Java to be installed on your system. Simply double-click on it and follow the instructions.
Ludovic Dubost 28.1 46 * A zip version. Unzip it in any <tt>[[XWIKIHOME]]</tt> directory of your choice.
47 <p/>
48 The Windows installer creates shortcuts to start and stop XWiki. If you've used the zip file or generic Installer, go to the directory where you've installed XWiki (//[[XWIKIHOME]]//) and run //start_xwiki.bat// in Windows or //start_xwiki.sh// on Unix. To stop it, run the //stop_xwiki.bat// script on Windows and //stop_xwiki.sh// on Unix.
49 <p/>
50 Once XWiki is started point your browser to http://localhost:8080/xwiki/bin/view/Main/WebHome and the go to the [[User's Guide>>enterprise:UserGuide.WebHome]] to learn how to use XWiki. To change the port, edit the start script and replace 8080 by the number you want.
51 <p/>
52 {{info}}You can log in using the default Admin user (first letter is capitalized). The default password is 'admin' (lowercase).{{/info}}
fax 1.96 53
Ludovic Dubost 28.1 54 == Installing the XWiki WAR manually ==
fax 1.96 55
56 You'll need to perform 2 mandatory steps:
57
58 * Install and configure a Servlet Container
59 * Install and configure a relational database
Ludovic Dubost 28.1 60 <p/>
61 {{info}}If your database is empty this will result in a minimal empty wiki installation. You may want to use the [[Import/Export tool>>AdminGuide.ImportExport]] to import some pages in your wiki. We recommend that you import the [[provided default XAR>>xwiki:Main.Download]]. If you're upgrading from an existing installation your database should already contain the pages you had before. If you're using the new XWiki 1.0 skin you might want to install the [[Panels Application>>code:Applications.PanelsApplication]].{{/info}}
62 <p/>
63 {{info}}If you are installing in a linux/unix environment you have to setup the //xwiki.upload.tempdir// parameter as explained in the JIRA entry (http://jira.xwiki.org/jira/browse/XWIKI-530) **before** importing anything into XWiki.{{/info}}
fax 1.96 64
Ludovic Dubost 28.1 65 === Install and configure a Servlet Container ===
fax 1.96 66
67 XWiki will work with any Servlet Container. We're only listing instructions for a few containers but you can adapt these instructions for your favorite container.
68
Ludovic Dubost 28.1 69 * [[Tomcat installation>>AdminGuide.InstallationTomcat]]
70 * [[Jetty installation>>AdminGuide.InstallationJetty]]
71 * [[GlassFish installation>>AdminGuide.InstallationGlassFish]]
72 * [[WebSphere installation>>AdminGuide.InstallationWebSphere]]
73 * [[JBoss Installation>>AdminGuide.InstallationJBoss]]
74 * [[Oracle OC4J Installation>>AdminGuide.InstallationOC4J]]
75 <p/>
fax 1.96 76 You're now ready to install and configure your relational database.
77
Ludovic Dubost 28.1 78 === Install and configure a Relational Database ===
fax 1.96 79
80 XWiki can work with a lot of relational databases. We're only listed those that we have tested it on.
Ludovic Dubost 28.1 81 <p/>
fax 1.96 82 The general strategy is the following:
83
84 * Install your favorite RDBMS
85 * Create a xwiki database
86 * Create a user with all privileges on that xwiki database
Vincent Massol 1.124 87 * Copy your RDBMS Java drivers to the XWiki webapp's <tt>WEB-INF/lib</tt> directory
88 * Configure XWiki to use the created database. This involves modifying the <tt>WEB-INF/hibernate.cfg.xml</tt> file as is described in the tutorials for each database below. Also make sure that your <tt>xwiki.cfg</tt> file has an entry that points to your <tt>WEB-INF/hibernate.cfg.xml</tt> file (<tt>xwiki.store.hibernate.path=/WEB-INF/hibernate.cfg.xml</tt>) as otherwise your settings won't be used.
blaine 18.1 89 * (A more scalable and J2EE-conformant tactic is to use the servlet container to manage your data source. You modify the web app as little as possible... hopefully one day Xwiki will allow you to override hibernate.cfg.xml without needing to change the app itself.
90 ** Do not add your JDBC library to the web app. Install it to the container classpath instead, like to <tt>$CATALINA_HOME/common/lib</tt>.
91 ** Do not set user, url, etc., nor connection.provider_class in <tt>hibernate.cfg.xml</tt>. The critical settings are <tt>connection.datasource</tt> (with JNDI name like "java:/comp/env/jdbc/test") and the dialect class for your DB vendor. (You should leave the provider_class unset, since Xwiki's implementation doesn't handle container-managed data sources).
92 ** Manage all database access settings using your container facilities, for example Tomcat admin webapp or server.xml + APPNAME.xml.
Ludovic Dubost 28.1 93 <p/>
blaine 18.1 94 )
blaine 15.1 95
fax 1.96 96 Install and configure the database you wish to use:
97
Ludovic Dubost 28.1 98 * [[HSQL Installation>>AdminGuide.InstallationHSQL]]
99 * [[MySQL Installation>>AdminGuide.InstallationMySQL]]
100 * [[PostgreSQL Installation>>AdminGuide.InstallationPostgreSQL]]
101 * [[Oracle Installation>>AdminGuide.InstallationOracle]]
102 * [[DB2 Installation>>AdminGuide.InstallationDB2]]
103 * [[Derby Installation>>AdminGuide.InstallationDerby]]
104 * [[Microsoft SQL Server Installation>>AdminGuide.InstallationMSSQL]]
fax 1.96 105
Ludovic Dubost 28.1 106 === Concluding Step ===
fax 1.96 107
Ludovic Dubost 28.1 108 At this stage you have finished configuration XWiki. If you start your database and container and point your browser to http://localhost:8080/xwiki/ you'll have a working, albeit minimal, wiki (without any page loaded). The next step is either to create new pages by hand or import the default Wiki that we are providing as a [[XAR file>>xwiki:Main.Download]], by using the [[Import feature>>AdminGuide.ImportExport]].
fax 1.96 109
Ludovic Dubost 28.1 110 == Installing the eXo Enterprise WebOS integration WAR ==
fax 1.96 111
Ludovic Dubost 28.1 112 {{warning}}The integration with eXo is still very experimental and the instructions below are not finalized yet. Proceed with caution!{{/warning}}
fax 1.96 113
Ludovic Dubost 28.1 114 === Install eXo WebOS ===
fax 1.96 115
Vincent Massol 1.124 116 * Download the latest version of eXo Portal on http://forge.objectweb.org/projects/exoplatform/ (version 2.0-Alpha-2 or greater is required).
fax 1.96 117 * Follow the eXo installation instructions located inside the Portal ZIP and try to login in the portal.
118
Ludovic Dubost 28.1 119 === Install XWiki inside eXo ===
fax 1.96 120
121 * Stop eXo Portal.
Ludovic Dubost 28.1 122 * Download the [[latest XWiki eXo WAR>>xwiki:Main.Download]]. You'll need version 1.0-beta-6 or above.
123 * Create a directory //exo-tomcat/webapps/xwiki//.
124 * Unzip the WAR in //exo-tomcat/webapps/xwiki// and rename the exploded directory to "xwiki".
125 * Move the //ehcache.jar// from //xwiki/WEB-INF/lib// to //exo-tomcat/common/lib// (There are some conflicts with it that both XWiki/eXo will need to fix in future versions).
126 * Remove all the eXo jars from //xwiki/WEB-INF/lib//
127 * Configure XWiki's database as explained [[above>>#HInstallandconfigureaRelationalDatabase]].
128 * Change in //xwiki.cfg//: xwiki.exo=1 to xwiki.exo=0. TODO: Explain why this is required as it is very counter-intuitive!
fax 1.96 129 * Restart eXo Portal.
130 * You can now either import XWiki as a Portlet inside the Portal as described below or access XWiki directly by using the usual URL.
Ludovic Dubost 28.1 131 * [[Change the skin to use the XWiki 1.0 skin>>AdminGuide.Skins#HChangingtheskin]]. This skin is compatible with the Portlet mode and specifically with eXo WebOS.
132 * Import the [[default wiki XAR>>xwiki:Main.Download]] or use your own XWiki database.
fax 1.96 133 * Give the admin right to XWikiGuest
134 * To be continued...
135
Ludovic Dubost 28.1 136 === Use XWiki inside the WebOS ===
fax 1.96 137
138 Inside the WebOS, XWiki is seen as a Portlet and therefore must be imported in eXo through the PortletRegistry application. To do so you need to login as exoadmin / exo in eXo and go to the Administration desktop and use the PortletRegistry application. Click on the "Import Portlet Category" icon, you should now see XWiki in the list. You can now add the Portlet in your desktop page though the "Add Application" icon in the desktop dock.
Vincent Massol 1.113 139
Ludovic Dubost 28.1 140 == Installing the Default Wiki XAR ==
fax 1.96 141
142 The default wiki is a fully configured wiki that you can use as a starting point for creating your own wiki content. It provides the following:
Ludovic Dubost 28.1 143
fax 1.96 144 * A Blog
145 * Photo albums
146 * A What's New page
Ludovic Dubost 28.1 147 * The [[Panels Application>>code:Applications.PanelsApplication]]
fax 1.96 148 * Search
149 * Administration page (Access rights, Group and users management, etc)
150 * ... and much more
Ludovic Dubost 28.1 151 <p/>
152 **It comes configured with an "Admin" user (password is "admin" in lowercase). You'll need that username/password to log in once you've imported the default wiki.**
153 <p/>
154 To install the XAR, use the [[Import/Export tool>>AdminGuide.ImportExport]].
155 <p/>
156 {{warning}}If you're upgrading an existing wiki be careful that the XAR import operation will replace the content of the existing pages of your wiki with the content of the XAR (New pages that you have created will not be modified). As a consequence it's critical that you [[perform a backup>>platform:AdminGuide.Backup]] first.{{/warning}}
fax 1.96 157
Ludovic Dubost 28.1 158 == Upgrading an XWiki Installation ==
fax 1.96 159
bitman09 1.126 160 There are different parts of XWiki that you may want to upgrade:
fax 1.96 161
Ludovic Dubost 28.1 162 * [[XWiki Core>>#HUpgradingXWikiCore]]
163 * [[Documents provided with the default XWiki XAR>>#HUpgradingwikidocuments]]
164 <p/>
165 {{info}}If you're upgrading an XWiki 0.9 installation refer to [[this guide>>UpgradeXWiki09Installation]].{{/info}}
Vincent Massol 1.113 166
Ludovic Dubost 28.1 167 === Upgrading XWiki Core ===
Vincent Massol 9.7 168
Ludovic Dubost 28.1 169 The general strategy is to [[download the WAR distribution>>xwiki:Main.Download]] and to replace your current installed WAR. 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&#45;INF/lib). Before replacing your current WAR, make sure you back it up and more specifically that you copy the <tt>hibernate.cfg.xml</tt> and <tt>xwiki.cfg</tt> files which you'll need to copy in your newly installed WAR since they container your XWiki configuration. Make sure you also copy any plugins you may have added or any template files you may have modified.
170 <p/>
171 Some additional operations may be required for upgrading and you must check the [[release notes>>xwiki:Main.ReleaseNotes]] 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 your <tt>xwiki.cfg</tt> file needs to be modified. If this is the case then it'll be specified in the release notes.
Vincent Massol 1.113 172
Ludovic Dubost 28.1 173 === Upgrading wiki documents ===
Vincent Massol 1.113 174
Ludovic Dubost 28.1 175 You may want to upgrade to a newer version of the Default Wiki XAR in order to benefit from the latest changes. As mentioned above in the [["Installing the Default Wiki XAR" section>>#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 1.113 176
fax 1.96 177 * XWiki.XWikiPreferences: This page contains the configuration of your wiki (it overrides the configuration defined in xwiki.cfg). If you import a new version of this page you'll loose any customization you may have made such as the skin to use, the rights for your wiki, etc.
178 * XWiki.WebPreferences, Main.WebPreferences, and all other spaces WebPreferences pages: Same as XWiki.XWikiPreferences but at the level of a space.
179 * 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.
180 * Any other page you have modified, such as Main.WebHome, a modified Panel, etc.
181
Ludovic Dubost 28.1 182 ==== Let's clean it up ====
bitman09 1.133 183
Ludovic Dubost 28.1 184 * 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 (% style="font-family:courier new,courier; " %) jar xvf xwiki-1.1-enterprise.war(%%), or avoid this step if you performed an export/import data migration (you already expanded it)
185 * Copy your old (% style="font-family:courier new,courier; " %) xwiki.cfg(%%) and (% style="font-family:courier new,courier; " %) hibernate.cfg.xml(%%) file to the WEB&#45;INF folder. Take care that if some changes were already made (probably because of database configuration when you installed the JDBC drivers) could be lost, so take care to add these changes
186 * Rename the skins/albatross folder to albatross.original, and copy the skins/default folder from XWiki 0.9 to skin/albatross. (//**WARNING:** this is an optional step, in case you don't want to use the default skin for 1.1x and want to retain your current skin in the new version//)
Vincent Massol 1.125 187 * Install this new folder as the xwiki application in your servlet container (may be by copying the folder to the servlet filesystem space or by packing it in a WAR file and deploying it)
Ludovic Dubost 28.1 188 <p/>
189 <br/>
190 At this point all is set, you can experience our old wiki data over the new XWiki core ~!!!
bitman09 1.126 191
Ludovic Dubost 28.1 192 == Troubleshooting ==
Vincent Massol 1.125 193
Ludovic Dubost 28.1 194 === Verify your installation ===
bitman09 1.128 195
Ludovic Dubost 28.1 196 You can verify some basic settings of your XWiki install (on Tomcat, MySQL) using the [[check Config and Indexes application>>code:Applications.CheckConfigAndIndexesApplication]].
bitman09 1.130 197
Ludovic Dubost 28.1 198 === Field 'XWD_ARCHIVE' doesn't have a default value ===
bitman09 1.131 199
Vincent Massol 1.124 200 If you get an error like the one below it probably means you had an old XWiki version installed (most likely a 0.9 version) which had a wrong schema. We're normally automatically fixing schemas at startup when you set the <tt>xwiki.store.hibernate.updateschema</tt> configuration parameter in <tt>xwiki.cfg</tt> (it's set to on by default). However it's currently not done for this error.
Ludovic Dubost 28.1 201 {{/html}}
202 {{/velocity}}
Vincent Massol 1.111 203
Ludovic Dubost 28.1 204 {{code language="none"}}
Vincent Massol 1.111 205 Wrapped Exception: Could not execute JDBC batch update
Vincent Massol 1.124 206 [...]
Vincent Massol 1.111 207 Wrapped Exception:
Ludovic Dubost 28.1 208 java.sql.BatchUpdateException: Field 'XWD_ARCHIVE' doesn't have a default value
209 {{/code}}
Vincent Massol 1.111 210
211 To fix this run the following SQL command on your database:
212
Ludovic Dubost 28.1 213 {{code language="sql"}}alter table xwikidoc modify column XWD_ARCHIVE mediumtext null;{{/code}}
Vincent Massol 1.111 214
Ludovic Dubost 28.1 215 === Failure to log in ===
Vincent Massol 1.111 216
217 Check that you don't have some old cookies and try deleting them.

Get Connected