背景介绍

国内xwiki安装使用资料较少,根据自己使用xwiki经验,总结出来,供参考,同时希望感兴趣的朋友能够一起讨论,XWiki是一个强大的Java开源的Wiki引擎。

它支持一些受欢迎的特性如:(内容管理(浏览/编辑/预览/保存),支持附件,版本控制,全文本搜索,权限管理使用Hibernate进行数据存储,RSS输出与显示外部的RSS feeds,多语言支持,提供XML/RPC的API,WYSIWYG HTML编辑器,导出为PDFGroovy脚本支持等等)

环境准备

mysql(已经安装,不扯蛋了)

apache-tomcat-7.0.42-windows-x64.zip

xwiki-enterprise-web-6.2.2.war

xwiki-enterprise-ui-mainwiki-all-6.2.2.xar

xwiki下载地址http://enterprise.xwiki.org/xwiki/bin/view/Main/Download

使用Tomcat服务器和mysql数据库

把xwiki-enterprise-web-6.2.2.war 放到 $TOMCAT_HOME/webapps 下 启动tomcat,待war包全部解压完成后关闭tomcat,并删除war包;

1:修改xwiki.cfg,开启superadmin;

  1. #-# Enable to allow superadmin. It is disabled by default as this could be a
  2. #-# security breach if it were set and you forgot about it. Should only be enabled
  3. #-# for recovering the Wiki when the rights are completely messed.
  4. xwiki.superadminpassword=system
#-# 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

2:修改hibernate.hbm.xml,启动mysql数据库连接;

  1. <!-- Configuration for the default database.
  2. Comment out this section and uncomment other sections below if you want to use another database.
  3. Note that the database tables will be created automatically if they don't already exist.
  4. <property name="connection.url">jdbc:hsqldb:file:${environment.permanentDirectory}/database/xwiki_db;shutdown=true</property>
  5. <property name="connection.username">sa</property>
  6. <property name="connection.password"></property>
  7. <property name="connection.driver_class">org.hsqldb.jdbcDriver</property>
  8. <property name="dialect">org.hibernate.dialect.HSQLDialect</property>
  9. <mapping resource="xwiki.hbm.xml"/>
  10. <mapping resource="feeds.hbm.xml"/>
  11. <mapping resource="activitystream.hbm.xml"/>
  12. <mapping resource="instance.hbm.xml"/>
  13. -->
  14. <!-- MySQL configuration.
  15. Uncomment if you want to use MySQL and comment out other database configurations.
  16. -->
  17. <property name="connection.url">jdbc:mysql://localhost/xwiki</property>
  18. <property name="connection.username">xwiki</property>
  19. <property name="connection.password">xwiki</property>
  20. <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
  21. <property name="dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>
  22. <property name="dbcp.ps.maxActive">20</property>
  23. <mapping resource="xwiki.hbm.xml"/>
  24. <mapping resource="feeds.hbm.xml"/>
  25. <mapping resource="activitystream.hbm.xml"/>
  26. <mapping resource="instance.hbm.xml"/>
<!-- 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.
&lt;property name="connection.url"&gt;jdbc:hsqldb:file:${environment.permanentDirectory}/database/xwiki_db;shutdown=true&lt;/property&gt;
&lt;property name="connection.username"&gt;sa&lt;/property&gt;
&lt;property name="connection.password"&gt;&lt;/property&gt;
&lt;property name="connection.driver_class"&gt;org.hsqldb.jdbcDriver&lt;/property&gt;
&lt;property name="dialect"&gt;org.hibernate.dialect.HSQLDialect&lt;/property&gt; &lt;mapping resource="xwiki.hbm.xml"/&gt;
&lt;mapping resource="feeds.hbm.xml"/&gt;
&lt;mapping resource="activitystream.hbm.xml"/&gt;
&lt;mapping resource="instance.hbm.xml"/&gt;
--&gt;
&lt;!-- MySQL configuration.
Uncomment if you want to use MySQL and comment out other database configurations.
--&gt;
&lt;property name="connection.url"&gt;jdbc:mysql://localhost/xwiki&lt;/property&gt;
&lt;property name="connection.username"&gt;xwiki&lt;/property&gt;
&lt;property name="connection.password"&gt;xwiki&lt;/property&gt;
&lt;property name="connection.driver_class"&gt;com.mysql.jdbc.Driver&lt;/property&gt;
&lt;property name="dialect"&gt;org.hibernate.dialect.MySQL5InnoDBDialect&lt;/property&gt;
&lt;property name="dbcp.ps.maxActive"&gt;20&lt;/property&gt;
&lt;mapping resource="xwiki.hbm.xml"/&gt;
&lt;mapping resource="feeds.hbm.xml"/&gt;
&lt;mapping resource="activitystream.hbm.xml"/&gt;
&lt;mapping resource="instance.hbm.xml"/&gt;</pre>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 需要在mysql中建立数据库xwiki,且授予相关的权限:<br><div class="dp-highlighter bg_java"><div class="bar"><div class="tools"><b>[java]</b> <a href="#" class="ViewSource" title="view plain" onclick="dp.sh.Toolbar.Command('ViewSource',this);return false;">view plain</a><span class="tracking-ad" data-mod="popu_168"> <a href="#" class="CopyToClipboard" title="copy" onclick="dp.sh.Toolbar.Command('CopyToClipboard',this);return false;">copy</a><div style="position: absolute; left: 496px; top: 1531px; width: 16px; height: 16px; z-index: 99;"><embed id="ZeroClipboardMovie_3" src="http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf" loop="false" menu="false" quality="best" bgcolor="#ffffff" width="16" height="16" name="ZeroClipboardMovie_3" align="middle" allowscriptaccess="always" allowfullscreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="id=3&amp;width=16&amp;height=16" wmode="transparent"></div></span><span class="tracking-ad" data-mod="popu_169"> <a href="#" class="PrintSource" title="print" onclick="dp.sh.Toolbar.Command('PrintSource',this);return false;">print</a></span><a href="#" class="About" title="?" onclick="dp.sh.Toolbar.Command('About',this);return false;">?</a></div></div><ol start="1" class="dp-j"><li class="alt"><span><span>create&nbsp;database&nbsp;xwiki&nbsp;</span><span class="keyword">default</span><span>&nbsp;character&nbsp;set&nbsp;utf8;&nbsp;&nbsp;</span></span></li><li class=""><span>grant&nbsp;all&nbsp;privileges&nbsp;on&nbsp;xwiki.*&nbsp;to&nbsp;xwiki<span class="annotation">@localhost</span><span>&nbsp;&nbsp;identified&nbsp;by&nbsp;</span><span class="string">"xwiki"</span><span>;&nbsp;&nbsp;</span></span></li></ol></div><pre class="java" name="code" style="display: none;">create database xwiki default character set utf8;

grant all privileges on xwiki.* to xwiki@localhost identified by "xwiki";

安装过程中出现的问题

1:中文乱码的解决($TOMCAT_HOME/conf/server.xml该文件下Connector节中增加URIEncoding="UTF8")

  1. <Connector port="8080" protocol="HTTP/1.1"
  2. connectionTimeout="20000"
  3. redirectPort="8443" URIEncoding="UTF-8" />
  4. <!-- Define an AJP 1.3 Connector on port 8009 -->
  5. <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" URIEncoding="UTF-8" />
    <Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" URIEncoding="UTF-8" />
&lt;!-- Define an AJP 1.3 Connector on port 8009 --&gt;
&lt;Connector port="8009" protocol="AJP/1.3" redirectPort="8443" URIEncoding="UTF-8" /&gt;</pre><br><br><p></p>

2:java.lang.OutOfMemoryError(在$TOMCAT_HOME/bin/catalina.bat中增加) 183行前

  1. set JAVA_OPTS=-Xms256m -Xmx768m -XX:PermSize=256m -XX:MaxPermSize=768m -Djava.awt.headless=true
set JAVA_OPTS=-Xms256m -Xmx768m -XX:PermSize=256m -XX:MaxPermSize=768m -Djava.awt.headless=true

内存溢出之Tomcat内存配置   http://blog.csdn.net/crazy_kis/article/details/7535932

Linux下:

  1. JAVA_OPTS='-server -Xms256m -Xmx512m -XX:PermSize=128M -XX:MaxPermSize=256M -Djava.awt.headless=true'
JAVA_OPTS='-server -Xms256m -Xmx512m -XX:PermSize=128M -XX:MaxPermSize=256M -Djava.awt.headless=true'



3:java.sql.BatchUpdateException: Packet for query is too large (1808035 > 1048576)

修改MySQL/MySQL Server 5.5/my.ini

  1. [mysqld]
  2. max_allowed_packet = 10M
  3. # The TCP/IP Port the MySQL Server will listen on
  4. port=3306
[mysqld]
max_allowed_packet = 10M
# The TCP/IP Port the MySQL Server will listen on
port=3306

把mysql的驱动包放到$TOMCAT_HOME/lib下

启动tomcat,并访问localhost:8080/xwiki;

按照安装向导一步步的完成安装

1:

2:

3:

4:

5:

6: 后台登陆 superadmin/system,设置中文

Xwiki平台Windows搭建(Tomcat7 + XWiki6.2 + MySQL5.5)的更多相关文章

  1. Windows环境下ELK(5.X)平台的搭建

    一.Windows环境下ELK平台的搭建(2.*) 1.安装配置Java环境 在Oracle官网获取最新版的Java版本,由于只是运行不是开发,所以也可以只下载JRE.官网:http://www.or ...

  2. Tensorflow平台快速搭建:Windows 7+TensorFlow 0.12.0

    Tensorflow平台快速搭建:Windows 7+TensorFlow 0.12.0 1.TensorFlow 0.12.0下载 2016年11月29日,距离TensorFlow 宣布开源刚刚过去 ...

  3. Windows平台下搭建Git服务器的图文教程

    Git没有客户端服务器端的概念,但是要共享Git仓库,就需要用到SSH协议(FTP , HTTPS , SFTP等协议也能实现Git共享,此文档不讨论),但是SSH有客户端服务器端,所以在window ...

  4. Windows平台下搭建Git服务器的图文教程(转发)

    Git没有客户端服务器端的概念,但是要共享Git仓库,就需要用到SSH协议(FTP , HTTPS , SFTP等协议也能实现Git共享,此文档不讨论),但是SSH有客户端服务器端,所以在window ...

  5. 01.WAMP搭建 [Win7+Apache2.4+MySQL5.7+PHP7

    WAMP搭建[Win7+Apache2.4+MySQL5.7+PHP7 一.背景 将电脑光驱位拆换成固态硬盘(120g),专门装了一个系统用于工作.之前一直使用PHPstudy和WAMP这种集成环境, ...

  6. Windows搭建python开发环境,python入门到精通[一]

    从大学开始玩python到现在参加工作,已经有5年了,现在的公司是一家.net的公司用到python的比较少,最近公司有新项目需要用到python,领导希望我来跟其他同事training,就有了这篇博 ...

  7. Windows搭建react-native开发环境

    一.目标平台 windows+android 1. 必须软件 python2+ nodejs npm 2. 安装react-native命令行 $ npm install -g react-nativ ...

  8. Windows搭建python开发环境

    python你不去认识它,可能没什么,一旦你认识了它,你就会爱上它 基本概念Python(英语发音:/ˈpaɪθən/), 是一种面向对象.解释型计算机程序设计语言,由Guido van Rossum ...

  9. caffe平台快速搭建:caffe+window7+vs2013

    caffe平台快速搭建:caffe+window7+vs2013 1.caffe-master下载 采用微软提供Windows工具包(caffe-master),下载地址:https://github ...

随机推荐

  1. Xshell调整终端显示的最大行数(缓冲区)

    1 选择会话,按顺序点击文件->属性 ,打开"会话属性"窗口 如下 在"会话属性"窗口中选择“终端” 修改缓冲区大小的值:其范围为0~2147483647 ...

  2. 【原创】读写锁ReentrantReadWriteLock原理分析(一)

    Java里面真正意义的锁并不多,其实真正的实现Lock接口的类就三个,ReentrantLock和ReentrantReadWriteLock的两个内部类(ReentrantReadWriteLock ...

  3. HDU 1338 Game Prediction【贪心】

    解题思路: 给出 n  m 牌的号码是从1到n*m 你手里的牌的号码是1到n*m之间的任意n个数,每张牌都只有一张,问你至少赢多少次 可以转化为你最多输max次,那么至少赢n-max次 而最多输max ...

  4. php截取字符串|php截取字符串前几位|php截取中文字符串

    转 截取字符串专题:php截取字符串函数,php 字符串长度,php截取字符串前几位 PHP截取中文字符串(mb_substr)和获取中文 => http://www.q3060.com/lis ...

  5. MyBatis中关于SQL标签的用法(重用SQL 代码段)

    一. 没用sql标签前的SQL映射代码: <select id="findById" resultType="cn.tedu.mybatis.entity.User ...

  6. 【Paper Reading】Object Recognition from Scale-Invariant Features

    Paper: Object Recognition from Scale-Invariant Features Sorce: http://www.cs.ubc.ca/~lowe/papers/icc ...

  7. Innodb中的事务隔离级别和锁的关系(转载)

    nodb中的事务隔离级别和锁的关系 原文:https://tech.meituan.com/innodb-lock.html ameng ·2014-08-20 15:50 前言: 我们都知道事务的几 ...

  8. 1.1 Python for macOS 安装与配置

    本文主要讲解在macOS系统下的Python3.7.0的配置与安装问题 并调试好开发环境 目标是编辑成功第一个python程序 下载最新版(3.7.0)Python macOS系统自带python 不 ...

  9. python基础7(函数 Ⅱ)

    1.python代码运行遇到函数时 从python解释器开始执行之后,就在内存中开辟了一个空间 每当遇到一个变量的时候,就把变量名和值之间的对应关系记录下来. 但是当遇到函数定义的时候解释器只是象征性 ...

  10. 国庆 day 1 下午

    一道图论好题(graph) Time Limit:1000ms   Memory Limit:128MB 题目描述 LYK有一张无向图G={V,E},这张无向图有n个点m条边组成.并且这是一张带权图, ...