Skip to content

Instantly share code, notes, and snippets.

@yorickvP
Created March 15, 2018 11:50
Show Gist options
  • Save yorickvP/7d10969dcfc0e4f217de274269a88090 to your computer and use it in GitHub Desktop.
Save yorickvP/7d10969dcfc0e4f217de274269a88090 to your computer and use it in GitHub Desktop.
$ postgres --version
postgres (PostgreSQL) 10.1
# postgresql_jdbc
nix-repl> postgresql_jdbc.src.urls
[ "http://jdbc.postgresql.org/download/postgresql-jdbc-9.3-1100.src.tar.gz" ]
# java
nix-repl> openjdk8.jre.name
"openjdk-8u172b02"
# xwiki version
nix-repl> (import ./packages/xwiki {}).urls
[ "http://download.forge.ow2.org/xwiki/xwiki-10.1.war" ]
# jetty base contents:
$ ls -alR /nix/store/cdxc94gsn9z1nn5wp0sz7gjzskmxxay3-xwiki-jetty-base
/nix/store/cdxc94gsn9z1nn5wp0sz7gjzskmxxay3-xwiki-jetty-base:
total 100
dr-xr-xr-x 3 root root 4096 Jan 1 1970 .
drwxrwxr-t 854 root nixbld 90112 Mar 14 21:04 ..
lrwxrwxrwx 5 root root 19 Jan 1 1970 .fop -> /var/lib/xwiki/.fop
dr-xr-xr-x 2 root root 4096 Jan 1 1970 webapps
/nix/store/cdxc94gsn9z1nn5wp0sz7gjzskmxxay3-xwiki-jetty-base/webapps:
total 12
dr-xr-xr-x 2 root root 4096 Jan 1 1970 .
dr-xr-xr-x 3 root root 4096 Jan 1 1970 ..
-r--r--r-- 2 root root 334 Jan 1 1970 myapp.xml
<?xml version="1.0" encoding="UTF-8"?>
<!--
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!-- Please refer to the installation guide on
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Installation for configuring your
database. You'll need to do 2 things:
1) Copy your database driver JAR in WEB-INF/lib or in some shared lib directory
2) Uncomment the properties below for your specific DB (and comment the default
database configuration if it doesn't match your DB)
-->
<!-- Generic parameters common to all Databases -->
<property name="show_sql">false</property>
<property name="use_outer_join">true</property>
<!-- Without it, some queries fail in MS SQL. XWiki doesn't need scrollable result sets, anyway. -->
<property name="jdbc.use_scrollable_resultset">false</property>
<!-- DBCP Connection Pooling configuration. Only some properties are shown. All available properties can be found
at http://commons.apache.org/proper/commons-dbcp/configuration.html
-->
<property name="dbcp.defaultAutoCommit">false</property>
<property name="dbcp.maxTotal">50</property>
<property name="dbcp.maxIdle">5</property>
<property name="dbcp.maxWaitMillis">30000</property>
<property name="connection.provider_class">com.xpn.xwiki.store.DBCPConnectionProvider</property>
<!-- Setting "dbcp.poolPreparedStatements" to true and "dbcp.maxOpenPreparedStatements" will tell DBCP to cache
Prepared Statements (it's off by default). Note that for backward compatibility the "dbcp.ps.maxActive" is also
supported and when set it'll set "dbcp.poolPreparedStatements" to true and "dbcp.maxOpenPreparedStatements" to
value of "dbcp.ps.maxActive".
Note 1: When using HSQLDB for example, it's important to NOT cache prepared statements because HSQLDB
Prepared Statements (PS) contain the schema on which they were initially created and thus when switching
schema if the same PS is reused it'll execute on the wrong schema! Since HSQLDB does internally cache
prepared statement there's no performance loss by not caching Prepared Statements at the DBCP level.
See https://jira.xwiki.org/browse/XWIKI-1740.
Thus we recommend not turning on this configuration for HSQLDB unless you know what you're doing :)
Note 2: The same applies to PostGreSQL.
-->
<!-- BoneCP Connection Pooling configuration.
<property name="bonecp.idleMaxAgeInMinutes">240</property>
<property name="bonecp.idleConnectionTestPeriodInMinutes">60</property>
<property name="bonecp.partitionCount">3</property>
<property name="bonecp.acquireIncrement">10</property>
<property name="bonecp.maxConnectionsPerPartition">60</property>
<property name="bonecp.minConnectionsPerPartition">20</property>
<property name="bonecp.statementsCacheSize">50</property>
<property name="bonecp.releaseHelperThreads">3</property>
<property name="connection.provider_class">com.xpn.xwiki.store.DBCPConnectionProvider</property>
-->
<!-- Configuration for the default database.
Comment out this section and uncomment other sections below if you want to use another database.
Note that the database tables will be created automatically if they don't already exist.
If you want the main wiki database to be different than "xwiki" (or the default schema for schema based engines)
you will also have to set the property xwiki.db in xwiki.cfg
<property name="connection.url">jdbc:hsqldb:file:${environment.permanentDirectory}/database/xwiki_db;shutdown=true</property>
<property name="connection.username">sa</property>
<property name="connection.password"></property>
<property name="connection.driver_class">org.hsqldb.jdbcDriver</property>
<property name="dialect">org.hibernate.dialect.HSQLDialect</property>
<property name="hibernate.connection.charSet">UTF-8</property>
<property name="hibernate.connection.useUnicode">true</property>
<property name="hibernate.connection.characterEncoding">utf8</property>
<mapping resource="xwiki.hbm.xml"/>
<mapping resource="feeds.hbm.xml"/>
<mapping resource="activitystream.hbm.xml"/>
<mapping resource="instance.hbm.xml"/>
<mapping resource="mailsender.hbm.xml"/>
-->
<!-- MySQL configuration.
Uncomment if you want to use MySQL and comment out other database configurations.
Notes:
- if you want the main wiki database to be different than "xwiki"
you will also have to set the property xwiki.db in xwiki.cfg file
<property name="connection.url">jdbc:mysql://localhost/xwiki?useSSL=false</property>
<property name="connection.username">xwiki</property>
<property name="connection.password">xwiki</property>
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>
<property name="dbcp.poolPreparedStatements">true</property>
<property name="dbcp.maxOpenPreparedStatements">20</property>
<mapping resource="xwiki.hbm.xml"/>
<mapping resource="feeds.hbm.xml"/>
<mapping resource="activitystream.hbm.xml"/>
<mapping resource="instance.hbm.xml"/>
<mapping resource="mailsender.hbm.xml"/>
-->
<!-- HSQLDB configuration.
Uncomment if you want to use HSQLDB and comment out other database configurations.
Notes:
- if you want the main wiki schema to be different than "PUBLIC" (the default HSQLDB schema)
you will also have to set the property xwiki.db in xwiki.cfg file
<property name="connection.url">jdbc:hsqldb:file:${environment.permanentDirectory}/database/xwiki_db;shutdown=true</property>
<property name="connection.username">sa</property>
<property name="connection.password"></property>
<property name="connection.driver_class">org.hsqldb.jdbcDriver</property>
<property name="dialect">org.hibernate.dialect.HSQLDialect</property>
<mapping resource="xwiki.hbm.xml"/>
<mapping resource="feeds.hbm.xml"/>
<mapping resource="activitystream.hbm.xml"/>
<mapping resource="instance.hbm.xml"/>
<mapping resource="mailsender.hbm.xml"/>
-->
<!-- PostgreSQL configuration.
Uncomment if you want to use PostgreSQL and comment out other database configurations.
Notes:
- "jdbc.use_streams_for_binary" needs to be set to "false",
see https://community.jboss.org/wiki/HibernateCoreMigrationGuide36
- "xwiki.virtual_mode" can be set to either "schema" or "database". Note that currently the database mode
doesn't support database creation (see https://jira.xwiki.org/browse/XWIKI-8753)
- if you want the main wiki database to be different than "xwiki" (or "public" in schema mode)
you will also have to set the property xwiki.db in xwiki.cfg file
-->
<property name="connection.url">jdbc:postgresql://localhost:5432/xwiki</property>
<property name="connection.username">xwiki</property>
<property name="connection.password">xwiki</property>
<property name="connection.driver_class">org.postgresql.Driver</property>
<property name="dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<property name="jdbc.use_streams_for_binary">false</property>
<property name="xwiki.virtual_mode">schema</property>
<mapping resource="xwiki.postgresql.hbm.xml"/>
<mapping resource="feeds.hbm.xml"/>
<mapping resource="activitystream.hbm.xml"/>
<mapping resource="instance.hbm.xml"/>
<mapping resource="mailsender.hbm.xml"/>
<!-- Oracle configuration.
Uncomment if you want to use Oracle and comment out other database configurations.
Notes:
- the 2 properties named "connection.SetBigStringTryClob" and
"jdbc.batch_size" are required to tell Oracle to allow CLOBs larger than 32K.
- "jdbc.use_streams_for_binary" needs to be set to "false",
see https://community.jboss.org/wiki/HibernateCoreMigrationGuide36
- if you want the main wiki schema to be different than "xwiki"
you will also have to set the property xwiki.db in xwiki.cfg file
<property name="connection.url">jdbc:oracle:thin:@localhost:1521:XE</property>
<property name="connection.username">xwiki</property>
<property name="connection.password">xwiki</property>
<property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
<property name="dialect">org.hibernate.dialect.Oracle10gDialect</property>
<property name="connection.SetBigStringTryClob">true</property>
<property name="jdbc.batch_size">0</property>
<property name="jdbc.use_streams_for_binary">false</property>
<property name="dbcp.poolPreparedStatements">true</property>
<property name="dbcp.maxOpenPreparedStatements">20</property>
<mapping resource="xwiki.oracle.hbm.xml"/>
<mapping resource="feeds.oracle.hbm.xml"/>
<mapping resource="activitystream.hbm.xml"/>
<mapping resource="instance.hbm.xml"/>
<mapping resource="mailsender.oracle.hbm.xml"/>
-->
<!-- Derby configuration.
Uncomment if you want to use Derby and comment out other database configurations.
Notes:
- if you want the main wiki schema to be different than "APP" (the default Derby schema)
you will also have to set the property xwiki.db in xwiki.cfg file
<property name="connection.url">jdbc:derby:/some/path/xwikidb;create=true</property>
<property name="connection.driver_class">org.apache.derby.jdbc.EmbeddedDriver</property>
<property name="dialect">org.hibernate.dialect.DerbyDialect</property>
<property name="dbcp.poolPreparedStatements">true</property>
<property name="dbcp.maxOpenPreparedStatements">20</property>
<mapping resource="xwiki.derby.hbm.xml"/>
<mapping resource="feeds.hbm.xml"/>
<mapping resource="activitystream.hbm.xml"/>
<mapping resource="instance.hbm.xml"/>
<mapping resource="mailsender.hbm.xml"/>
-->
<!-- H2 configuration.
Uncomment if you want to use H2 and comment out other database configurations.
Notes:
- if you want the main wiki schema to be different than "PUBLIC" (the default H2 schema)
you will also have to set the property xwiki.db in xwiki.cfg file
<property name="connection.url">jdbc:h2:${environment.permanentDirectory}/database/xwiki</property>
<property name="connection.username">sa</property>
<property name="connection.password"></property>
<property name="connection.driver_class">org.h2.Driver</property>
<property name="dialect">org.hibernate.dialect.H2Dialect</property>
<mapping resource="xwiki.hbm.xml"/>
<mapping resource="feeds.hbm.xml"/>
<mapping resource="activitystream.hbm.xml"/>
<mapping resource="instance.hbm.xml"/>
<mapping resource="mailsender.hbm.xml"/>
-->
</session-factory>
</hibernate-configuration>
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN"
"http://www.eclipse.org/jetty/configure_9_0.dtd">
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
<Set name="contextPath">/</Set>
<Set name="war">/nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1</Set>
</Configure>
#! /usr/bin/bash -e
mkdir -p /var/lib/xwiki/fonts
cp -f /nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/fonts.default/* /var/lib/xwiki/fonts/
#! /usr/bin/bash -e
/nix/store/h7lbf2qqb84s3ybida535x2apnil6qq1-openjdk-8u172b02/bin/java -Xmx1024m -Dfile.encoding=UTF8 -Djetty.port=8080 -jar /nix/store/nkm22d8s4mjnazfi8q6ybw2rll74npfn-jetty-distribution-9.4.8.v20171121/start.jar --module=server --module=http-forwarded --module=deploy --module=jsp jetty.port=8080 \
--lib=/nix/store/bv7vrpwpfw0xgllfyaphwmm42m8jr3cs-postgresql-jdbc-9.3-1100/share/java/postgresql.jar
# ---------------------------------------------------------------------------
# See the NOTICE file distributed with this work for additional
# information regarding copyright ownership.
#
# This is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation; either version 2.1 of
# the License, or (at your option) any later version.
#
# This software is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this software; if not, write to the Free
# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
# ---------------------------------------------------------------------------
#---------------------------------------
# Preamble
#
# This is the main old XWiki configuration file. Commented parameters show the default value, although some features
# might be disabled. To customize, uncomment and put your own value instead.
#
# This file come from one of those locations (in this order):
# * [since 9.3] /etc/xwiki/xwiki.cfg
# * /WEB-INF/xwiki.cfg in the web application resources
#---------------------------------------
# General wiki settings
#
#-# When the wiki is readonly, any updates are forbidden. To mark readonly, use one of: yes, 1, true
# xwiki.readonly=no
#-# [Since 1.6RC1] Defines the initial list of supported syntaxes. They list of enabled syntaxes is then controlled by
#-# the Admin UI of XWiki. When not defined, the default syntax is configured by default (this default syntax is
#-# defined in xwiki.properties using the core.defaultDocumentSyntax property).
#-# Example of syntaxes:
#-# xwiki/2.0, xwiki/2.1, confluence/1.0, jspwiki/1.0, creole/1.0, mediawiki/1.0, twiki/1.0, xhtml/1.0,
#-# html/4.01, plain/1.0, docbook/4.4, markdown/1.0, markdown/1.1, apt/1.0
#-# xwiki.rendering.syntaxes = xwiki/2.1
#-# List of groups that a new user should be added to by default after registering. Comma-separated list of group
#-# document names.
#-# The default list depends on the value of xwiki.authentication.group.allgroupimplicit:
#-# 0: created users are added to XWiki.XWikiAllGroup group page
#-# 1: created users are not added to any group page (but they will virtually be part of XWiki.XWikiAllGroup group)
# xwiki.users.initialGroups=XWiki.XWikiAllGroup
#-# Should all users be considered members of XWiki.XWikiAllGroup, even if they don't have an associated object in the
#-# group's document?
# xwiki.authentication.group.allgroupimplicit=0
#-# Uncomment if you want to ignore requests for unmapped actions, and simply display the document
# xwiki.unknownActionResponse=view
#-# The encoding to use when transformin strings to and from byte arrays. This causes the jvm encoding to be ignored,
#-# since we want to be independend of the underlying system.
xwiki.encoding=UTF-8
#-# This parameter will activate the sectional editing.
xwiki.section.edit=1
#-# This parameter controls the depth of sections that have section editing.
#-# By default level 1 and level 2 sections have section editing.
xwiki.section.depth=2
#-# Enable backlinks storage, which increases the update time, but allows to keep track of inter document links.
xwiki.backlinks=1
#-# Enable document tags.
xwiki.tags=1
#-# [Since 6.1M1] HTTP cache settings: by default, HTTP responses generated by XWiki actions are not supposed to be cached,
#-# since they often contain dynamic content. This can be controlled globally using the following setting, with accepted values:
#-# - 0: no Cache-Control header sent, use the browser's defaults. RFC 2616 only specifies optional behavior in this case
#-# - 1: no-cache; caches must not serve this response in a subsequent response, but the page is stored for the bf-cache
#-# - 2: no-store, no-cache and max-age=0; the response will never be reused, not even for bf-cache; note that unsaved changes may be lost
#-# - 3: private; the response will be cached by personal caches, such as a browser cache
#-# - 4: public; the response may be cached by both personal and shared caches
#-# This can be overridden in each wiki using a headers_nocache XWikiPreferences property of type Long.
# xwiki.httpheaders.cache=1
#---------------------------------------
# Storage
#
#-# Role hints that differentiate implementations of the various storage components. To add a new implementation for
#-# one of the storages, implement the appropriate interface and declare it in a components.xml file (using a role-hint
#-# other than 'default') and put its hint here.
#
#-# Stores with both "hibernate" and "file" support by default.
#-#
#-# [Since 9.0RC1] The default document content recycle bin storage. Default is hibernate.
#-# This property is only taken into account when deleting a document and has no effect on already deleted documents.
# xwiki.store.recyclebin.content.hint=hibernate
#-# The attachment storage. [Since 3.4M1] default is hibernate.
# xwiki.store.attachment.hint=hibernate
#-# The attachment versioning storage. Use 'void' to disable attachment versioning. [Since 3.4M1] default is hibernate.
# xwiki.store.attachment.versioning.hint=hibernate
#-# [Since 9.9RC1] The default attachment content recycle bin storage. Default is hibernate.
#-# This property is only taken into account when deleting an attachment and has no effect on already deleted documents.
# xwiki.store.attachment.recyclebin.content.hint=hibernate
#-#
#-# Stores with only "hibernate" support by default
#-#
#-# The main (documents) storage. [Since 3.4M1] default is hibernate.
# xwiki.store.main.hint=hibernate
#-# The document versioning storage. [Since 3.4M1] default is hibernate.
# xwiki.store.versioning.hint=hibernate
#-# The document recycle bin storage. [Since 3.4M1] default is hibernate.
# xwiki.store.recyclebin.hint=hibernate
#-# The attachment recycle bin storage. [Since 3.4M1] default is hibernate.
# xwiki.store.attachment.recyclebin.hint=hibernate
#-# [Since 3.4M1] The Migration manager.
# xwiki.store.migration.manager.hint=hibernate
#-# Whether the document recycle bin feature is activated or not
# xwiki.recyclebin=1
#-# Whether the attachment recycle bin feature is activated or not
# storage.attachment.recyclebin=1
#-# Whether the document versioning feature is activated or not
# xwiki.store.versioning=1
#-# Whether the attachment versioning feature is activated or not
# xwiki.store.attachment.versioning=1
#-# Whether the attachments should also be rolled back when a document is reverted.
# xwiki.store.rollbackattachmentwithdocuments=1
#-# The path to the hibernate configuration file.
# xwiki.store.hibernate.path=/WEB-INF/hibernate.cfg.xml
#-# [Since 3.3M1] Deprecated, use xwiki.store.migration
# xwiki.store.hibernate.updateschema=1
#-# Allow or disable custom mapping for particular XClasses. Custom mapping may increase the performance of certain
#-# queries when large number of objects from particular classes are used in the wiki.
# xwiki.store.hibernate.custommapping=1
#-# Dynamic custom mapping.
# xwiki.store.hibernate.custommapping.dynamic=0
#-# Put a cache in front of the document store. This greatly improves performance at the cost of memory consumption.
#-# Disable only when memory is critical.
# xwiki.store.cache=1
#-# Maximum number of documents to keep in the cache.
#-# The default is 500.
# xwiki.store.cache.capacity=500
#-# Maximum number of documents to keep in the cache indicating if a document exist.
#-# Since this cache contain only boolean it can be very big without taking much memory.
#-# The default is 10000.
# xwiki.store.cache.pageexistcapacity=10000
#-# [Since 1.6M1]
#-# Force the database name for the main wiki.
# xwiki.db=xwiki
#-# [Since 1.6M1]
#-# Add a prefix to all databases names of each wiki.
# xwiki.db.prefix=
#---------------------------------------
# Data migrations and schema updates
#
# [Since 3.3M1] Migration and schema updates are now done together. Data migration manipulates the actual data,
# and schema updates change the layout of the database. Schema updates are require for proper database access
# and migration are useful for migrating data to new formats, correct errors introduced in older versions, or
# even for schema updates which are not backward compatible.
#-# Whether schema updates and migrations are enabled or not. Should be enabled when upgrading, but for a better
#-# startup time it is better to disable them in production.
xwiki.store.migration=1
#-# Whether to exit after migration. Useful when a server should handle migrations for a large database, without going
#-# live afterwards.
# xwiki.store.migration.exitAfterEnd=0
#-# Indicate the list of databases to migrate.
#-# to upgrade all wikis database set xwiki.store.migration.databases=all
#-# to upgrade just some wikis databases set xwiki.store.migration.databases=xwiki,wiki1,wiki2
#-# Note: the main wiki is always migrated whatever the configuration.
#-# [Since 3.3M1] default to migrate all databases
# xwiki.store.migration.databases=all
#---------------------------------------
# Internationalization
#
#-# By default, XWiki chooses the language specified by the client (browser) in the Accept-Language HTTP header. This
#-# allows to use the default language of the wiki when the user didn't manually choose a language.
# xwiki.language.preferDefault=0
#-# Force only one of the supported languages to be accepted.
# xwiki.language.forceSupported=0
#---------------------------------------
# Virtual wikis (farm)
#
#-# Starting with XWiki 5.0M2, virtual mode is enabled by default.
#-# [Since 5.0M2]
#-# What to do when the requested wiki does not exist:
#-# - 0: (default) serve the main wiki
#-# - 1: display an error (customizable through wikidoesnotexist.vm or xwiki:XWiki.WikiDoesNotExist)
# xwiki.virtual.failOnWikiDoesNotExist=0
#-# Forbidden names that should not be allowed when creating a new wiki.
# xwiki.virtual.reserved_wikis=
#-# How virtual wikis are mapped to different URLs.
#-# If set to 0, then virtual wikis have different domain names, in the format http://wikiname.myfarm.net/.
#-# If set to 1 (the default), then the domain is common for the entire farm, but the path contains the wiki name,
#-# in the format http://myfarm.net/xwiki/wiki/wikiname/.
#-# Note that you can configure the "/wiki/" part with xwiki.virtual.usepath.servletpath property.
# xwiki.virtual.usepath=1
#-# Configure the servlet action identifier for url path based multiwiki. It has also to be modified in web.xml.
# xwiki.virtual.usepath.servletpath=wiki
#---------------------------------------
# URLs
#
#-# The domain name to use when creating URLs to the default wiki. If set, the generated URLs will point to this server
#-# instead of the requested one. It should contain schema, domain and (optional) port, and the trailing /. For example:
#-# xwiki.home=http://www.xwiki.org/
#-# xwiki.home=http://wiki.mycompany.net:8080/
# xwiki.home=
#-# The name of the default URL factory that should be used.
# xwiki.urlfactory.serviceclass=com.xpn.xwiki.web.XWikiURLFactoryServiceImpl
#-# Force the protocol to use in the generated URLs. The right value is taken from the request URL, so setting this
#-# is not recommended in most cases.
#-# For example:
#-# xwiki.url.protocol=https
# xwiki.url.protocol=
#-# The name of the webapp to use in the generated URLs. If not specified, the value is extracted from the request URL
#-# and thus it's generally not required to set it. However if you're deploying XWiki as ROOT in your Servlet Container
#-# and you're using XWiki 6.2.8+/6.4.3+/7.0+ you must set it to an empty value as otherwise the code cannot guess it.
#-# Note that not setting this property seemed to work on previous versions when deploying as ROOT but it was actually
#-# leading to errors from time to time, depending on what URL was used when doing the first request on the XWiki
#-# instance.
#-# For example:
#-# xwiki.webapppath=xwiki
xwiki.webapppath=
#-# The default servlet mapping name to use in the generated URLs. The right value is taken from the request URL,
#-# preserving the requested servlet mapping, so setting this is not recommended in most cases. If set, the value should
#-# contain a trailing /, but not a leading one. For example:
#-# xwiki.servletpath=bin/
# xwiki.servletpath=
#-# The fallback servlet mapping name to use in the generated URLs. Unlike xwiki.servletpath, this is the value used
#-# when the correct setting could not be determined from the request URL. A good way to use this setting is to achieve
#-# short URLs, see http://platform.xwiki.org/xwiki/bin/Main/ShortURLs
# xwiki.defaultservletpath=bin/
#-# Whether the /view/ part of the URL should be included if the target action is 'view'.
# xwiki.showviewaction=1
#-# The name of the default space. This is displayed when the URL specifies a document, but not a space, or neither.
# xwiki.defaultweb=Main
#-# The name of the default page of a space. This is displayed when the URL specifies a space, but not a document, or
#-# neither.
# xwiki.defaultpage=WebHome
#-# Hide the /WebHome part of the URL when the document is the default one. Use 0 to hide, 1 to show.
# xwiki.usedefaultaction=0
#-# [Since 4.0RC1]
#-# Indicate if the URL used in HTTPSevlet#sendRedirect should be made absolute by XWiki or left to application server.
#-# Sending absolute URLs is a bad practice and generally not needed. This option is mostly here as retro-compatibility
#-# switch and you should always make sure to properly configure your application server or any proxy behind it before
#-# using this.
#-# 0: send relative URLs (the default)
#-# 1: send absolute URLs
# xwiki.redirect.absoluteurl=0
#---------------------------------------
# Users
#
xwiki.inactiveuser.allowedpages=
#---------------------------------------
# Authentication and authorization
#
#-# Enable to allow superadmin. It is disabled by default as this could be a
#-# security breach if it were set and you forgot about it. Should only be enabled
#-# for recovering the Wiki when the rights are completely messed.
# xwiki.superadminpassword=system
#-# Authentication type. You can use 'basic' to always use basic authentication.
# xwiki.authentication=form
#-# Indicate if the authentication has do be done for each request
#-# 0: the default value, authentication is done only once by session.
#-# 1: the authentication is done for each request.
# xwiki.authentication.always=0
#-# Cookie encryption keys. You SHOULD replace these values with any random string,
#-# as long as the length is the same.
xwiki.authentication.validationKey=H1MiDKHLdHRzayA3p8hRlM5S8OaXVjjy
xwiki.authentication.encryptionKey=Ndg07BMMimHy0FvJ6EF95g8RF-MNk3i1
#-# Comma separated list of domains for which authentication cookies are set. This
#-# concerns mostly wiki farms. The exact meaning is that when a user logs in, if
#-# the current domain name corresponding to the wiki ends with one of the entries
#-# in this parameter, then the cookie is set for the larger domain. Otherwise, it
#-# is set for the exact domain name of the wiki.
#-#
#-# For example, suppose the cookiedomains is set to "mydomain.net". If I log in
#-# on wiki1.xwiki.com, then the cookie will be set for the entire mydomain.net
#-# domain, and if I visit wiki2.xwiki.com I will still be authenticated. If I log
#-# in on wiki1.otherdomain.net, then I will only be authenticated on
#-# wiki1.otherdomain.net, and not on wiki2.otherdomain.net.
#-#
#-# So you need this parameter set only for global authentication in a
#-# farm, there's no need to specify your domain name otherwise.
#-#
#-# Example: xwiki.authentication.cookiedomains=xwiki.org,myxwiki.org
xwiki.authentication.cookiedomains=
#-# This allows logout to happen for any page going through the /logout/ action, regardless of the document or the
#-# servlet.
#-# Comment-out if you want to enable logout only for /bin/logout/XWiki/XWikiLogout
#-# Currently accepted patterns:
#-# - /StrutsServletName/logout/ (this is usually /bin/logout/ and is the default setup)
#-# - /logout/ (this works with the short URLs configuration)
#-# - /wiki/SomeWikiName/logout/ (this works with path-based virtual wikis)
xwiki.authentication.logoutpage=(/|/[^/]+/|/wiki/[^/]+/)logout/*
#-# The group management class.
# xwiki.authentication.groupclass=com.xpn.xwiki.user.impl.xwiki.XWikiGroupServiceImpl
#-# The authentication management class.
# xwiki.authentication.authclass=com.xpn.xwiki.user.impl.xwiki.XWikiAuthServiceImpl
xwiki.authentication.authclass=com.xpn.xwiki.user.impl.xwiki.GroovyAuthServiceImpl
xwiki.authentication.groovy.pagename=xwiki:GoogleApps.AuthService
#-# (Deprecated) The authorization management class.
#-# [Since 5.0M2] The default right service is now org.xwiki.security.authorization.internal.XWikiCachingRightService
#-# which is a bridge to the new security authorization component. It provides increased security and performance, but
#-# its right policies differ sightly from the old Right Service implementation. In rare situation, you may want to
#-# switch back to the old unmaintained implementation by uncommenting the following line. However, only old
#-# implementation, still using a bridged RightService will be impacted by this parameter. Customization of the new
#-# security authorization component should be done in the new xwiki.properties configuration (security.*).
# xwiki.authentication.rightsclass=com.xpn.xwiki.user.impl.xwiki.XWikiRightServiceImpl
#-# If an unauthenticated user (guest) tries to perform a restricted action, by default the wiki redirects to the login
#-# page. Enable this to simply display an "unauthorized" message instead, to hide the login form.
# xwiki.hidelogin=false
#-# HTTP status code to sent when the authentication failed.
xwiki.authentication.unauthorized_code=200
#-# Used by some authenticators (like com.xpn.xwiki.user.impl.xwiki.AppServerTrustedAuthServiceImpl)
#-# to indicate that the users should be created. In this kind of authenticator the user are not created by default.
#-# Must be set to "empty".
# xwiki.authentication.createuser=empty
#-# If set to true(the default value), cookies of users are blocked from being used except by the same IP address
#-# which got them.
# xwiki.authentication.useip=true
#---------------------------------------
# Editing
#
#-# Minor edits don't participate in notifications.
# xwiki.minoredit=1
#-# Use edit comments
xwiki.editcomment=1
#-# Hide editcomment field and only use Javascript
# xwiki.editcomment.hidden=0
#-# Make edit comment mandatory
xwiki.editcomment.mandatory=0
#-# Make edit comment suggested (asks 1 time if the comment is empty.
#-# 1 shows one popup if comment is empty.
#-# 0 means there is no popup.
#-# This setting is ignored if mandatory is set
# xwiki.editcomment.suggested=0
#---------------------------------------
# Skins & Templates configuration
#
#-# The default skin to use when there's no value specified in the wiki preferences document. Note that the default
#-# wiki already specifies a skin, so this setting is only valid for empty wikis.
xwiki.defaultskin=flamingo
#-# The default base for skins that don't specify a base skin. This is also the last place where a skin file is searched
#-# if not found in the more specific skins.
xwiki.defaultbaseskin=flamingo
#-# Defines whether title handling should be using the compatibility mode or not. When the compatibility
#-# mode is active, XWiki will try to extract a title from the document content.
#-# If the document's content first header (level 1 or level 2) matches the document's title
#-# the first header is stripped.
#-# The default value is 0.
# xwiki.title.compatibility=1
#-# Defines the maximum header depth to look for when computing a document's title from its content. If no header
#-# equal or lower to the specified depth is found then the computed title falls back to the document name.
#-# The default value is 2.
# xwiki.title.headerdepth=2
#-# Defines if setting the title field must be mandatory in the WYSIWYG and Wiki editors. It is mandatory when this
#-# property is set to 1. The default value is 0 (not mandatory).
# xwiki.title.mandatory=0
#---------------------------------------
# Plugin Mechanism
#
#-# List of active plugins.
xwiki.plugins=\
com.xpn.xwiki.monitor.api.MonitorPlugin,\
com.xpn.xwiki.plugin.skinx.JsSkinExtensionPlugin,\
com.xpn.xwiki.plugin.skinx.JsSkinFileExtensionPlugin,\
com.xpn.xwiki.plugin.skinx.JsResourceSkinExtensionPlugin,\
com.xpn.xwiki.plugin.skinx.CssSkinExtensionPlugin,\
com.xpn.xwiki.plugin.skinx.CssSkinFileExtensionPlugin,\
com.xpn.xwiki.plugin.skinx.CssResourceSkinExtensionPlugin,\
com.xpn.xwiki.plugin.skinx.LinkExtensionPlugin,\
com.xpn.xwiki.plugin.feed.FeedPlugin,\
com.xpn.xwiki.plugin.mail.MailPlugin,\
com.xpn.xwiki.plugin.packaging.PackagePlugin,\
com.xpn.xwiki.plugin.svg.SVGPlugin,\
com.xpn.xwiki.plugin.fileupload.FileUploadPlugin,\
com.xpn.xwiki.plugin.image.ImagePlugin,\
com.xpn.xwiki.plugin.diff.DiffPlugin,\
com.xpn.xwiki.plugin.rightsmanager.RightsManagerPlugin,\
com.xpn.xwiki.plugin.jodatime.JodaTimePlugin,\
com.xpn.xwiki.plugin.scheduler.SchedulerPlugin,\
com.xpn.xwiki.plugin.mailsender.MailSenderPlugin,\
com.xpn.xwiki.plugin.activitystream.plugin.ActivityStreamPlugin,\
com.xpn.xwiki.plugin.tag.TagPlugin,\
com.xpn.xwiki.plugin.zipexplorer.ZipExplorerPlugin,\
com.xpn.xwiki.plugin.watchlist.WatchListPlugin
#---------------------------------------
# Monitor Plugin
#
#-# Enable light monitoring of the wiki performance. Records various statistics, like number of requests processed,
#-# time spent in rendering or in the database, medium time for a request, etc. Disable for a minor increase of
#-# performance and a bit of memory.
# xwiki.monitor=1
#-# Maximum number of last requests to remember.
# xwiki.monitor.lastlistsize=20
#---------------------------------------
# GraphViz Plugin
#
#-# GraphViz plugin configuration. The GraphViz plugin is not configured by default.
#-# To enable it, add "com.xpn.xwiki.plugin.graphviz.GraphVizPlugin" to the list of plugins
#-# in the xwiki.plugins property.
#-# Uncomment and set the locations of the Dot and Neato executables
# xwiki.plugin.graphviz.dotpath=c:/Program Files/ATT/GraphViz/bin/dot.exe
# xwiki.plugin.graphviz.neatopath=c:/Program Files/ATT/GraphViz/bin/neato.exe
#---------------------------------------
# Image Plugin
#
xwiki.plugin.image.cache.capacity=30
#---------------------------------------
# Activity Stream Plugin
#
#-# [Since 2.0RC1]
#-# Activity Stream plugin.
#-# The Activity Stream plugin stores data in a dedicated table in the database. Each wiki has its own database.
#-# The plugin can be configured to store its data into the database corresponding to the wiki, into the main database
#-# (default: xwiki) or both. These options should not be both set to 0 (in this case the local store will be forced).
#-# Important note: disabling storage in the main store will prevent the watchlist from retrieving events from subwikis.
#-#
#-# Default: 1
# xwiki.plugin.activitystream.uselocalstore=1
#-#
#-# Default: 1
# xwiki.plugin.activitystream.usemainstore=1
#-#
#-# Number of days the events should be kept (0 or any negative value: infinite duration)
#-# Note: if this value is greater than 0 a scheduler job will be created, this job will then be fired every week to
#-# delete events older than the configured value.
#-# Default: 0
# xwiki.plugin.activitystream.daystokeepevents=0
#---------------------------------------
# Watchlist Plugin
#
#-# [Since 3.1M1]
#-# Indicate which mode to use for automatic document watching.
#-# The possibles modes are the following:
#-# * none: never automatically add document in watchlist
#-# * all: add to watchlist any modified document
#-# * major: add to watchlist only document which are not edited as minor edit. That's the default mode.
#-# * new: add to watchlist only newly created documents
# xwiki.plugin.watchlist.automaticwatch=major
#---------------------------------------
# Statistics Plugin
#
#-# Note that this plugin is in charge of storing stats in the database, and offering some API to query them.
#-# It doesn't provide any UI. If you wish to install a UI, please check the Statistics Application at
#-# http://extensions.xwiki.org/xwiki/bin/view/Extension/Statistics+Application
#-# (this application is no longer bundled in XWiki starting with 8.0)
#-# Stats configuration allows to globally activate/deactivate stats module (launch storage thread, register events...).
#-# Enabled by default.
# xwiki.stats=1
#-# When statistics are globally enabled, storage can be enabled/disabled by wiki using the XWikiPreference property
#-# "statistics".
#-# Note: Statistics are disabled by default for improved performances/space.
xwiki.stats.default=0
#-# Deprecated since 2.5M1. Use "xwiki.stats.request.excludedUsersAndGroups" instead.
# xwiki.stats.excludedUsersAndGroups=XWiki.Admin,XWiki.XWikiGuest
#-# [Since 2.5M1]
#-# List of users and groups to filter from the visit search request result. Entities are comma separated and can be
#-# relative.
#-# "XWiki.Admin" means "XWiki.Admin" user on the wiki where the search is done and "xwiki:XWiki.Admin" only filter
#-# admin user from main wiki.
#-# For example, the following filter default admin user and unregistered user from the most active contributor graph
#-# on Stats.WebHome page:
# xwiki.stats.request.excludedUsersAndGroups
#-# [Since 2.5M1]
#-# List of users and groups to skip when storing statistics to the database. Entities are comma separated and can be
#-# relative.
#-# "XWiki.Admin" means "XWiki.Admin" user on the wiki where the search is done and "xwiki:XWiki.Admin" only filter
#-# admin user from main wiki.
#-# For example, the following filter avoid storing statistics for the user "HiddenUser":
# xwiki.stats.excludedUsersAndGroups=XWiki.HiddenUser
#-# It is also possible to choose a different stats service to record statistics separately from XWiki.
# xwiki.stats.class=com.xpn.xwiki.stats.impl.XWikiStatsServiceImpl
#---------------------------------------
# Import/Export
#
#-# [Since 6.2]
#-# Indicate if Filter module should be used when exporting a XAR in the export action.
#-# By default Filter module is used, uncomment to use the old system.
# xwiki.action.export.xar.usefilter=0
#-# [Since 6.2]
#-# Indicate if Filter module should be used when importing a XAR in the import action.
#-# By default Filter module is used, uncomment to use the old system.
# xwiki.action.import.xar.usefilter=0
-- Logs begin at Tue 2018-03-13 11:22:10 UTC, end at Thu 2018-03-15 11:25:02 UTC. --
Mar 15 11:22:11 wiki systemd[1]: Starting xwiki.service...
Mar 15 11:22:12 wiki systemd[1]: Started xwiki.service.
Mar 15 11:22:13 wiki xwiki-start[8789]: 2018-03-15 11:22:13.812:INFO::main: Logging initialized @1317ms to org.eclipse.jetty.util.log.StdErrLog
Mar 15 11:22:14 wiki xwiki-start[8789]: 2018-03-15 11:22:14.237:WARN:oejx.XmlConfiguration:main: Property 'jetty.port' is deprecated, use 'jetty.http.port' instead
Mar 15 11:22:14 wiki xwiki-start[8789]: 2018-03-15 11:22:14.280:INFO:oejs.Server:main: jetty-9.4.8.v20171121, build timestamp: 2017-11-21T21:27:37Z, git hash: 82b8fb23f757335bb3329d540ce37a2a2615f0a8
Mar 15 11:22:14 wiki xwiki-start[8789]: 2018-03-15 11:22:14.364:INFO:oejdp.ScanningAppProvider:main: Deployment monitor [file:///nix/store/cdxc94gsn9z1nn5wp0sz7gjzskmxxay3-xwiki-jetty-base/webapps/] at interval 1
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.193:WARN:oeja.AnnotationParser:qtp1555845260-10: org.w3c.dom.ElementTraversal scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/batik-ext-1.9.jar!/org/w3c/dom/ElementTraversal.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/ElementTraversal.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.197:WARN:oeja.AnnotationParser:qtp1555845260-10: org.w3c.dom.UserDataHandler scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/jaxen-1.1.6.jar!/org/w3c/dom/UserDataHandler.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/UserDataHandler.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.198:WARN:oeja.AnnotationParser:qtp1555845260-10: org.w3c.dom.events.DocumentEvent scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/batik-ext-1.9.jar!/org/w3c/dom/events/DocumentEvent.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/events/DocumentEvent.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.199:WARN:oeja.AnnotationParser:qtp1555845260-10: org.w3c.dom.events.Event scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/batik-ext-1.9.jar!/org/w3c/dom/events/Event.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/events/Event.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.199:WARN:oeja.AnnotationParser:qtp1555845260-10: org.w3c.dom.events.EventException scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/batik-ext-1.9.jar!/org/w3c/dom/events/EventException.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/events/EventException.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.199:WARN:oeja.AnnotationParser:qtp1555845260-10: org.w3c.dom.events.EventListener scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/batik-ext-1.9.jar!/org/w3c/dom/events/EventListener.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/events/EventListener.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.200:WARN:oeja.AnnotationParser:qtp1555845260-10: org.w3c.dom.events.EventTarget scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/batik-ext-1.9.jar!/org/w3c/dom/events/EventTarget.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/events/EventTarget.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.200:WARN:oeja.AnnotationParser:qtp1555845260-10: org.w3c.dom.events.MouseEvent scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/batik-ext-1.9.jar!/org/w3c/dom/events/MouseEvent.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/events/MouseEvent.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.200:WARN:oeja.AnnotationParser:qtp1555845260-10: org.w3c.dom.events.MutationEvent scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/batik-ext-1.9.jar!/org/w3c/dom/events/MutationEvent.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/events/MutationEvent.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.201:WARN:oeja.AnnotationParser:qtp1555845260-10: org.w3c.dom.events.UIEvent scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/batik-ext-1.9.jar!/org/w3c/dom/events/UIEvent.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-1.4.01.jar!/org/w3c/dom/events/UIEvent.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.212:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.AttributeCondition scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/AttributeCondition.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/AttributeCondition.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.213:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.CSSException scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/CSSException.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/CSSException.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.213:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.CSSParseException scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/CSSParseException.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/CSSParseException.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.213:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.CharacterDataSelector scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/CharacterDataSelector.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/CharacterDataSelector.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.213:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.CombinatorCondition scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/CombinatorCondition.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/CombinatorCondition.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.214:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.Condition scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/Condition.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/Condition.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.214:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.ConditionFactory scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/ConditionFactory.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/ConditionFactory.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.215:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.ConditionalSelector scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/ConditionalSelector.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/ConditionalSelector.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.215:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.ContentCondition scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/ContentCondition.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/ContentCondition.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.215:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.DescendantSelector scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/DescendantSelector.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/DescendantSelector.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.216:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.DocumentHandler scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/DocumentHandler.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/DocumentHandler.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.216:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.ElementSelector scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/ElementSelector.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/ElementSelector.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.216:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.ErrorHandler scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/ErrorHandler.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/ErrorHandler.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.216:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.InputSource scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/InputSource.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/InputSource.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.217:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.LangCondition scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/LangCondition.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/LangCondition.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.217:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.LexicalUnit scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/LexicalUnit.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/LexicalUnit.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.217:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.Locator scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/Locator.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/Locator.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.218:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.NegativeCondition scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/NegativeCondition.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/NegativeCondition.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.218:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.NegativeSelector scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/NegativeSelector.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/NegativeSelector.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.218:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.Parser scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/Parser.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/Parser.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.218:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.PositionalCondition scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/PositionalCondition.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/PositionalCondition.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.219:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.ProcessingInstructionSelector scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/ProcessingInstructionSelector.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/ProcessingInstructionSelector.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.219:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.SACMediaList scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/SACMediaList.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/SACMediaList.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.219:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.Selector scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/Selector.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/Selector.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.220:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.SelectorFactory scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/SelectorFactory.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/SelectorFactory.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.220:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.SelectorList scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/SelectorList.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/SelectorList.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.220:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.SiblingSelector scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/SiblingSelector.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/SiblingSelector.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.220:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.SimpleSelector scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/SimpleSelector.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/SimpleSelector.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.221:WARN:oeja.AnnotationParser:qtp1555845260-13: org.w3c.css.sac.helpers.ParserFactory scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/sac-1.3.jar!/org/w3c/css/sac/helpers/ParserFactory.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-ext-1.3.04.jar!/org/w3c/css/sac/helpers/ParserFactory.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.585:WARN:oeja.AnnotationParser:qtp1555845260-12: javax.xml.namespace.QName scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xml-apis-1.4.01.jar!/javax/xml/namespace/QName.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xpp3-1.1.4c.jar!/javax/xml/namespace/QName.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.592:WARN:oeja.AnnotationParser:qtp1555845260-12: org.xmlpull.v1.XmlPullParser scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xmlpull-1.1.3.1.jar!/org/xmlpull/v1/XmlPullParser.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xpp3-1.1.4c.jar!/org/xmlpull/v1/XmlPullParser.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.592:WARN:oeja.AnnotationParser:qtp1555845260-12: org.xmlpull.v1.XmlPullParserException scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xmlpull-1.1.3.1.jar!/org/xmlpull/v1/XmlPullParserException.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xpp3-1.1.4c.jar!/org/xmlpull/v1/XmlPullParserException.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.592:WARN:oeja.AnnotationParser:qtp1555845260-12: org.xmlpull.v1.XmlPullParserFactory scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xmlpull-1.1.3.1.jar!/org/xmlpull/v1/XmlPullParserFactory.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xpp3-1.1.4c.jar!/org/xmlpull/v1/XmlPullParserFactory.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.593:WARN:oeja.AnnotationParser:qtp1555845260-12: org.xmlpull.v1.XmlSerializer scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xmlpull-1.1.3.1.jar!/org/xmlpull/v1/XmlSerializer.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xpp3-1.1.4c.jar!/org/xmlpull/v1/XmlSerializer.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.605:WARN:oeja.AnnotationParser:qtp1555845260-18: org.xmlpull.mxp1.MXParser scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xpp3-1.1.4c.jar!/org/xmlpull/mxp1/MXParser.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xpp3_min-1.1.4c.jar!/org/xmlpull/mxp1/MXParser.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.606:WARN:oeja.AnnotationParser:qtp1555845260-18: org.xmlpull.v1.XmlPullParser scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xmlpull-1.1.3.1.jar!/org/xmlpull/v1/XmlPullParser.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xpp3-1.1.4c.jar!/org/xmlpull/v1/XmlPullParser.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xpp3_min-1.1.4c.jar!/org/xmlpull/v1/XmlPullParser.class]
Mar 15 11:22:32 wiki xwiki-start[8789]: 2018-03-15 11:22:32.606:WARN:oeja.AnnotationParser:qtp1555845260-18: org.xmlpull.v1.XmlPullParserException scanned from multiple locations: [jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xmlpull-1.1.3.1.jar!/org/xmlpull/v1/XmlPullParserException.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xpp3-1.1.4c.jar!/org/xmlpull/v1/XmlPullParserException.class, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xpp3_min-1.1.4c.jar!/org/xmlpull/v1/XmlPullParserException.class]
Mar 15 11:22:33 wiki xwiki-start[8789]: 2018-03-15 11:22:33.726:INFO:oeja.AnnotationConfiguration:main: Scanning elapsed time=15893ms
Mar 15 11:22:35 wiki xwiki-start[8789]: 2018-03-15 11:22:35.238:INFO:oejs.session:main: DefaultSessionIdManager workerName=node0
Mar 15 11:22:35 wiki xwiki-start[8789]: 2018-03-15 11:22:35.240:INFO:oejs.session:main: No SessionScavenger set, using defaults
Mar 15 11:22:35 wiki xwiki-start[8789]: 2018-03-15 11:22:35.241:INFO:oejs.session:main: Scavenging every 600000ms
Mar 15 11:22:41 wiki xwiki-start[8789]: 2018-03-15 11:22:41,713 [main] INFO o.x.e.i.ServletEnvironment - Using permanent directory [/var/lib/xwiki]
Mar 15 11:22:49 wiki xwiki-start[8789]: 2018-03-15 11:22:49,934 [main] WARN .x.e.m.i.MavenExtensionScanner - Collision between core extension [javax.annotation:javax.annotation-api/1.2 (jar:file:/nix/store/nkm22d8s4mjnazfi8q6ybw2rll74npfn-jetty-distribution-9.4.8.v20171121/lib/annotations/javax.annotation-api-1.2.jar!/META-INF/maven/javax.annotation/javax.annotation-api/pom.xml)] and [javax.annotation:javax.annotation-api/1.3.1 (file:/nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/javax.annotation-api-1.3.1.xed)]
Mar 15 11:22:49 wiki xwiki-start[8789]: 2018-03-15 11:22:49,936 [main] WARN .x.e.m.i.MavenExtensionScanner - [javax.annotation:javax.annotation-api/1.3.1 (file:/nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/javax.annotation-api-1.3.1.xed)] is selected
Mar 15 11:22:53 wiki xwiki-start[8789]: 2018-03-15 11:22:53,594 [main] INFO o.x.s.s.i.EmbeddedSolrInstance - Starting embedded Solr server...
Mar 15 11:22:53 wiki xwiki-start[8789]: 2018-03-15 11:22:53,598 [main] INFO o.x.s.s.i.EmbeddedSolrInstance - Using Solr home directory: [/var/lib/xwiki/solr]
Mar 15 11:22:56 wiki xwiki-start[8789]: 2018-03-15 11:22:56,785 [coreLoadExecutor-6-thread-1] WARN o.a.s.c.SolrResourceLoader - Solr loaded a deprecated plugin/analysis class [solr.SynonymFilterFactory]. Please consult documentation how to replace it accordingly.
Mar 15 11:23:00 wiki xwiki-start[8789]: 2018-03-15 11:23:00,428 [main] INFO o.x.s.s.i.EmbeddedSolrInstance - Started embedded Solr server.
Mar 15 11:23:04 wiki xwiki-start[8789]: 2018-03-15 11:23:04.632:INFO:oejsh.ContextHandler:main: Started o.e.j.w.WebAppContext@1e127982{/,[file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/drawer-2.4.0.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/html5shiv-3.7.2.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/requirejs-2.2.0.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xwiki-platform-job-webjar-10.1.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/moment-jdateformatparser-1.0.2.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/respond-1.4.2.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/jquery-ui-touch-punch-0.2.3-2.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/xwiki-platform-tree-webjar-10.1.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/less-2.5.3.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/bootstrap-switch-3.3.2.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/Keypress-2.1.3.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/bootstrap-select-1.12.0.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/bootstrap-daterangepicker-2.1.24.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/selectize.js-0.12.4.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/jquery-ui-1.11.4.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/font-awesome-4.7.0.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/colpick-2.0.2.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/jquery-2.2.2.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/jstree-3.3.3.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/bootstrap-3.3.7-1.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/momentjs-2.18.1.jar!/META-INF/resources, jar:file:///nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1/WEB-INF/lib/iscroll-5.1.3.jar!/META-INF/resources],AVAILABLE}{/nix/store/y56qr9xmmng832c7iad31nmd5nyhrk3d-xwiki-10.1}
Mar 15 11:23:04 wiki xwiki-start[8789]: 2018-03-15 11:23:04.713:INFO:oejs.AbstractConnector:main: Started ServerConnector@42112fda{HTTP/1.1,[http/1.1]}{0.0.0.0:8080}
Mar 15 11:23:04 wiki xwiki-start[8789]: 2018-03-15 11:23:04.714:INFO:oejs.Server:main: Started @52222ms
# ( after some time, I visit the xwiki instance and it shows the loading screen )
Mar 15 11:24:19 wiki xwiki-start[8789]: 2018-03-15 11:24:19,394 [XWiki initialization] INFO .HibernateDataMigrationManager - Storage schema updates and data migrations are enabled
Mar 15 11:24:19 wiki xwiki-start[8789]: 2018-03-15 11:24:19,734 [XWiki initialization] INFO .HibernateDataMigrationManager - No data migration to apply for wiki [xwiki] currently in version [1001000]
Mar 15 11:24:19 wiki xwiki-start[8789]: 2018-03-15 11:24:19,736 [XWiki initialization] INFO .HibernateDataMigrationManager - Checking Hibernate mapping and updating schema if needed for wiki [xwiki]
Mar 15 11:24:20 wiki xwiki-start[8789]: 2018-03-15 11:24:20,122 [XWiki initialization] WARN o.h.u.JDBCExceptionReporter - SQL Error: 0, SQLState: 42703
Mar 15 11:24:20 wiki xwiki-start[8789]: 2018-03-15 11:24:20,133 [XWiki initialization] ERROR o.h.u.JDBCExceptionReporter - ERROR: column t1.tgconstrname does not exist
Mar 15 11:24:20 wiki xwiki-start[8789]: Position: 113
Mar 15 11:24:20 wiki xwiki-start[8789]: 2018-03-15 11:24:20,140 [XWiki initialization] ERROR .HibernateDataMigrationManager - Failed to migrate database [xwiki]...
Mar 15 11:24:20 wiki xwiki-start[8789]: com.xpn.xwiki.store.migration.DataMigrationException: Unable to update schema of wiki [xwiki]
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.migration.hibernate.HibernateDataMigrationManager.updateSchema(HibernateDataMigrationManager.java:179)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.migration.AbstractDataMigrationManager.migrateDatabase(AbstractDataMigrationManager.java:742)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.migration.AbstractDataMigrationManager.startMigrations(AbstractDataMigrationManager.java:664)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.migration.hibernate.HibernateDataMigrationManager.startMigrations(HibernateDataMigrationManager.java:346)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.migration.AbstractDataMigrationManager.startMigrationsOnlyOnce(AbstractDataMigrationManager.java:644)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.migration.AbstractDataMigrationManager.tryToProcceedToMigration(AbstractDataMigrationManager.java:621)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.migration.AbstractDataMigrationManager.checkDatabase(AbstractDataMigrationManager.java:538)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.internal.store.hibernate.HibernateStore.setWiki(HibernateStore.java:339)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.internal.store.hibernate.HibernateStore.setWiki(HibernateStore.java:302)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.internal.store.hibernate.HibernateStore.beginTransaction(HibernateStore.java:472)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.XWikiHibernateBaseStore.beginTransaction(XWikiHibernateBaseStore.java:669)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.XWikiHibernateStore.loadXWikiDoc(XWikiHibernateStore.java:880)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.XWikiCacheStore.loadXWikiDoc(XWikiCacheStore.java:280)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.XWiki.getDocument(XWiki.java:1835)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.XWiki.getDocument(XWiki.java:1895)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.XWiki.initializeMandatoryDocument(XWiki.java:1284)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.XWiki.initializeMandatoryDocuments(XWiki.java:1258)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:1197)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:1111)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.XWiki.<init>(XWiki.java:1084)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.internal.XWikiInitializerJob.runInternal(XWikiInitializerJob.java:117)
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.xwiki.job.AbstractJob.runInContext(AbstractJob.java:206)
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.xwiki.job.AbstractJob.run(AbstractJob.java:189)
Mar 15 11:24:20 wiki xwiki-start[8789]: at java.lang.Thread.run(Thread.java:748)
Mar 15 11:24:20 wiki xwiki-start[8789]: Caused by: org.hibernate.HibernateException: Failed creating schema update script
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.XWikiHibernateBaseStore.getSchemaUpdateScript(XWikiHibernateBaseStore.java:404)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.XWikiHibernateBaseStore.updateSchema(XWikiHibernateBaseStore.java:301)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.migration.hibernate.HibernateDataMigrationManager.hibernateShemaUpdate(HibernateDataMigrationManager.java:194)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.migration.hibernate.HibernateDataMigrationManager.updateSchema(HibernateDataMigrationManager.java:175)
Mar 15 11:24:20 wiki xwiki-start[8789]: ... 23 common frames omitted
Mar 15 11:24:20 wiki xwiki-start[8789]: Caused by: org.hibernate.exception.SQLGrammarException: could not get table metadata: activitystream_events
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:92)
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:66)
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:52)
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.hibernate.tool.hbm2ddl.DatabaseMetadata.getTableMetadata(DatabaseMetadata.java:128)
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.hibernate.cfg.Configuration.generateSchemaUpdateScript(Configuration.java:1202)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.XWikiHibernateBaseStore.getSchemaUpdateScript(XWikiHibernateBaseStore.java:397)
Mar 15 11:24:20 wiki xwiki-start[8789]: ... 26 common frames omitted
Mar 15 11:24:20 wiki xwiki-start[8789]: Caused by: org.postgresql.util.PSQLException: ERROR: column t1.tgconstrname does not exist
Mar 15 11:24:20 wiki xwiki-start[8789]: Position: 113
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2161)
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:1890)
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:255)
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:560)
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.postgresql.jdbc2.AbstractJdbc2Statement.executeWithFlags(AbstractJdbc2Statement.java:403)
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.postgresql.jdbc2.AbstractJdbc2Statement.executeQuery(AbstractJdbc2Statement.java:283)
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.postgresql.jdbc2.AbstractJdbc2DatabaseMetaData.getImportedExportedKeys(AbstractJdbc2DatabaseMetaData.java:3558)
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.postgresql.jdbc2.AbstractJdbc2DatabaseMetaData.getImportedKeys(AbstractJdbc2DatabaseMetaData.java:3751)
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.apache.commons.dbcp2.DelegatingDatabaseMetaData.getImportedKeys(DelegatingDatabaseMetaData.java:312)
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.hibernate.tool.hbm2ddl.TableMetadata.initForeignKeys(TableMetadata.java:161)
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.hibernate.tool.hbm2ddl.TableMetadata.<init>(TableMetadata.java:60)
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.hibernate.tool.hbm2ddl.DatabaseMetadata.getTableMetadata(DatabaseMetadata.java:113)
Mar 15 11:24:20 wiki xwiki-start[8789]: ... 28 common frames omitted
Mar 15 11:24:20 wiki xwiki-start[8789]: 2018-03-15 11:24:20,145 [XWiki initialization] ERROR .HibernateDataMigrationManager - Main wiki database migration failed, it is not safe to continue!
Mar 15 11:24:20 wiki xwiki-start[8789]: 2018-03-15 11:24:20,147 [XWiki initialization] ERROR c.x.x.XWiki - Failed to initialize mandatory document
Mar 15 11:24:20 wiki xwiki-start[8789]: com.xpn.xwiki.XWikiException: Error number 3202 in 3: Exception while reading document [xwiki:XWiki.Notifications.Code.NotificationFilterDisplayerClass]
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.XWikiHibernateStore.loadXWikiDoc(XWikiHibernateStore.java:1007)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.XWikiCacheStore.loadXWikiDoc(XWikiCacheStore.java:280)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.XWiki.getDocument(XWiki.java:1835)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.XWiki.getDocument(XWiki.java:1895)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.XWiki.initializeMandatoryDocument(XWiki.java:1284)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.XWiki.initializeMandatoryDocuments(XWiki.java:1258)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:1197)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:1111)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.XWiki.<init>(XWiki.java:1084)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.internal.XWikiInitializerJob.runInternal(XWikiInitializerJob.java:117)
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.xwiki.job.AbstractJob.runInContext(AbstractJob.java:206)
Mar 15 11:24:20 wiki xwiki-start[8789]: at org.xwiki.job.AbstractJob.run(AbstractJob.java:189)
Mar 15 11:24:20 wiki xwiki-start[8789]: at java.lang.Thread.run(Thread.java:748)
Mar 15 11:24:20 wiki xwiki-start[8789]: Caused by: com.xpn.xwiki.XWikiException: Error number 3301 in 3: Exception while switching to database xwiki
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.internal.store.hibernate.HibernateStore.setWiki(HibernateStore.java:345)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.internal.store.hibernate.HibernateStore.setWiki(HibernateStore.java:302)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.internal.store.hibernate.HibernateStore.beginTransaction(HibernateStore.java:472)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.XWikiHibernateBaseStore.beginTransaction(XWikiHibernateBaseStore.java:669)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.XWikiHibernateStore.loadXWikiDoc(XWikiHibernateStore.java:880)
Mar 15 11:24:20 wiki xwiki-start[8789]: ... 12 common frames omitted
Mar 15 11:24:20 wiki xwiki-start[8789]: Caused by: com.xpn.xwiki.store.migration.DataMigrationException: Main wiki database migration failed, it is not safe to continue!
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.migration.AbstractDataMigrationManager.startMigrations(AbstractDataMigrationManager.java:667)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.migration.hibernate.HibernateDataMigrationManager.startMigrations(HibernateDataMigrationManager.java:346)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.migration.AbstractDataMigrationManager.startMigrationsOnlyOnce(AbstractDataMigrationManager.java:644)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.migration.AbstractDataMigrationManager.tryToProcceedToMigration(AbstractDataMigrationManager.java:621)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.store.migration.AbstractDataMigrationManager.checkDatabase(AbstractDataMigrationManager.java:538)
Mar 15 11:24:20 wiki xwiki-start[8789]: at com.xpn.xwiki.internal.store.hibernate.HibernateStore.setWiki(HibernateStore.java:339)
Mar 15 11:24:20 wiki xwiki-start[8789]: ... 16 common frames omitted
Mar 15 11:24:28 wiki xwiki-start[8789]: 2018-03-15 11:24:28,504 [solr/indexer job group daemon thread - org.xwiki.search.solr.internal.job.IndexerJob@5b0fbf00] INFO o.x.s.s.i.j.IndexerJob - Starting job of type [solr.indexer] with identifier [[solr, indexer]]
Mar 15 11:24:31 wiki xwiki-start[8789]: 2018-03-15 11:24:31,353 [solr/indexer job group daemon thread - org.xwiki.search.solr.internal.job.IndexerJob@5b0fbf00] INFO o.x.s.s.i.j.IndexerJob - 85 documents added, 85 deleted and 0 updated during the synchronization of the Solr index.
Mar 15 11:24:31 wiki xwiki-start[8789]: 2018-03-15 11:24:31,357 [solr/indexer job group daemon thread - org.xwiki.search.solr.internal.job.IndexerJob@5b0fbf00] INFO o.x.s.s.i.j.IndexerJob - Finished job of type [solr.indexer] with identifier [[solr, indexer]]
environment.permanentDirectory=/var/lib/xwiki/
# /nix/store/60g8y0xwrj3mfy1w79m0hl6i8nhy45ac-unit-xwiki.service/xwiki.service
[Service]
Environment="HOME=/var/lib/xwiki"
Environment="LOCALE_ARCHIVE=/nix/store/vg0s4sl74f5ik64wrrx0q9n6m48vvmgs-glibc-locales-2.26-131/lib/local>
Environment="PATH=/nix/store/cb3slv3szhp46xkrczqw7mscy5mnk64l-coreutils-8.29/bin:/nix/store/364b5gkvgrm8>
Environment="TZDIR=/nix/store/brib029xs79az5vhjd5nhixp1l39ni31-tzdata-2017c/share/zoneinfo"
DynamicUser=true
ExecStart=/nix/store/i2dl8bcl176fbvz3b163s39ma04khrnn-unit-script/bin/xwiki-start
ExecStartPre=/nix/store/kp7hxinqmwidc2xvzwk7fsqzg9d5xd47-unit-script/bin/xwiki-pre-start
StateDirectory=xwiki
WorkingDirectory=/nix/store/cdxc94gsn9z1nn5wp0sz7gjzskmxxay3-xwiki-jetty-base
-- run on database creation
CREATE ROLE xwiki LOGIN PASSWORD 'xwiki';
CREATE DATABASE xwiki OWNER xwiki;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment