- 浏览: 205587 次
- 性别:
- 来自: 深圳
文章分类
- 全部博客 (77)
- 技术点滴 (22)
- 14012 (1)
- 14013 (7)
- 14015 (5)
- 14016 (6)
- 14001 (6)
- 14017 (5)
- 15002 (1)
- 15003 (1)
- 14022 (1)
- struts2+spring+hibernate (0)
- jquery (0)
- JBPM (0)
- 技术研究 (4)
- http://www.oschina.net/translate/going-rest-embedding-jetty-with-spring-and-jax-rs-apache-cxf (0)
- 开源架构 (4)
- 通讯+多线程 (5)
- BasicKnowledge (1)
- 企业架构 (1)
- 优化类 (1)
最新评论
-
斯文只是爱好:
遇到一样的问题,我也是发现能用merge方法解决,但是,心里还 ...
Hibernate 异常:Illegal attempt to associate a collection with two open sessions -
talkname:
但是save是添加,merge是更新,把save变成merge ...
Hibernate 异常:Illegal attempt to associate a collection with two open sessions -
fuaotech:
恩 相互借鉴!
JS代码放在head和body的区别 -
sxm2017:
...
警告:Parameters:Invalid chunk ignored -
415421979:
...
警告:Parameters:Invalid chunk ignored
Openfire安装整合用户手册
冷志勇
官网 http://www.igniterealtime.org/
安装手册 参考
http://wenku.baidu.com/view/3d27bccd0508763231121296.html
我选择第一种数据库安装
安装spark 测试可以通讯
Linux 安装 下载 带jre的rpm包
http://www.igniterealtime.org/downloads/index.jsp
openfire-3.7.1-1.i386.rpm
Wget http://download.igniterealtime.org/openfire/openfire-3.7.1-1.i386.rpm
rpm –ivh openfire-3.7.1-1.i386.rpm
默认安装到/opt/openfire目录
启动方式 /etc/init.d/openfire start
整合用户手册
修改目录/conf/openfire.xml配置文件 开发工程中/target/conf/openfire.xml
修改后如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<!--
This file stores bootstrap properties needed by Openfire.
Property names must be in the format: "prop.name.is.blah=value"
That will be stored as:
<prop>
<name>
<is>
<blah>value</blah>
</is>
</name>
</prop>
Most properties are stored in the Openfire database. A
property viewer and editor is included in the admin console.
-->
<!-- root element, all properties must be under this element -->
<jive>
<adminConsole>
<!-- Disable either port by setting the value to -1 -->
<port>9090</port>
<securePort>9091</securePort>
</adminConsole>
<!—默认管理员lzy -->
<admin>
<authorizedUsernames>14001,admin</authorizedUsernames>
</admin>
<!--lzy -->
<locale>zh_CN</locale>
<!-- Network settings. By default, Openfire will bind to all network interfaces.
Alternatively, you can specify a specific network interfaces that the server
will listen on. For example, 127.0.0.1. This setting is generally only useful
on multi-homed servers. -->
<!--
<network>
<interface></interface>
</network>
-->
<!-- Authentication IntegrationS lzy -->
<provider>
<auth>
<className>org.jivesoftware.openfire.auth.JDBCAuthProvider</className>
</auth>
<user>
<className>org.jivesoftware.openfire.user.JDBCUserProvider</className>
</user>
</provider>
<jdbcProvider>
<driver>com.mysql.jdbc.Driver</driver>
<connectionString>jdbc:mysql://58.59.97.3:3306/fajxc?user=admin&password=fuao20091</connectionString>
</jdbcProvider>
<jdbcAuthProvider>
<passwordSQL>SELECT password FROM users WHERE loginName=?</passwordSQL>
<passwordType>plain</passwordType>
</jdbcAuthProvider>
<jdbcUserProvider>
<loadUserSQL>SELECT a.loginName as loginName,b.email as email FROM users a,employee b WHERE a.loginName=? and a.loginName = b.empNo</loadUserSQL>
<userCountSQL>SELECT COUNT(*) FROM users</userCountSQL>
<allUsersSQL>SELECT loginName FROM users</allUsersSQL>
<searchSQL>SELECT loginName FROM users WHERE</searchSQL>
<usernameField>loginName</usernameField>
<nameField>userName</nameField>
<emailField>email</emailField>
</jdbcUserProvider>
<!-- Authentication IntegrationE lzy -->
<connectionProvider>
<className>org.jivesoftware.database.DefaultConnectionProvider</className>
</connectionProvider>
<database>
<defaultProvider>
<driver>com.mysql.jdbc.Driver</driver>
<serverURL>jdbc:mysql://58.59.97.3:3306/openfire</serverURL>
<username>admin</username>
<password>fuao20091</password>
<testSQL>select 1</testSQL>
<testBeforeUse>true</testBeforeUse>
<testAfterUse>true</testAfterUse>
<minConnections>5</minConnections>
<maxConnections>25</maxConnections>
<connectionTimeout>1.0</connectionTimeout>
</defaultProvider>
</database>
<setup>true</setup>
<log>
<debug>
<enabled>true</enabled>
</debug>
</log>
</jive>
替换原来服务器的配置文件 然后重启服务器 登录后台
服务器---服务器管理器---系统属性—修改privider.auth. className 和privider.user. className
有用户组的话也修改privider.group. className(值对应配置文件的路径)
注意
默认管理员要在系统中用户中存在
配置文件对应表ofProperty
冷志勇
官网 http://www.igniterealtime.org/
安装手册 参考
http://wenku.baidu.com/view/3d27bccd0508763231121296.html
我选择第一种数据库安装
安装spark 测试可以通讯
Linux 安装 下载 带jre的rpm包
http://www.igniterealtime.org/downloads/index.jsp
openfire-3.7.1-1.i386.rpm
Wget http://download.igniterealtime.org/openfire/openfire-3.7.1-1.i386.rpm
rpm –ivh openfire-3.7.1-1.i386.rpm
默认安装到/opt/openfire目录
启动方式 /etc/init.d/openfire start
整合用户手册
修改目录/conf/openfire.xml配置文件 开发工程中/target/conf/openfire.xml
修改后如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<!--
This file stores bootstrap properties needed by Openfire.
Property names must be in the format: "prop.name.is.blah=value"
That will be stored as:
<prop>
<name>
<is>
<blah>value</blah>
</is>
</name>
</prop>
Most properties are stored in the Openfire database. A
property viewer and editor is included in the admin console.
-->
<!-- root element, all properties must be under this element -->
<jive>
<adminConsole>
<!-- Disable either port by setting the value to -1 -->
<port>9090</port>
<securePort>9091</securePort>
</adminConsole>
<!—默认管理员lzy -->
<admin>
<authorizedUsernames>14001,admin</authorizedUsernames>
</admin>
<!--lzy -->
<locale>zh_CN</locale>
<!-- Network settings. By default, Openfire will bind to all network interfaces.
Alternatively, you can specify a specific network interfaces that the server
will listen on. For example, 127.0.0.1. This setting is generally only useful
on multi-homed servers. -->
<!--
<network>
<interface></interface>
</network>
-->
<!-- Authentication IntegrationS lzy -->
<provider>
<auth>
<className>org.jivesoftware.openfire.auth.JDBCAuthProvider</className>
</auth>
<user>
<className>org.jivesoftware.openfire.user.JDBCUserProvider</className>
</user>
</provider>
<jdbcProvider>
<driver>com.mysql.jdbc.Driver</driver>
<connectionString>jdbc:mysql://58.59.97.3:3306/fajxc?user=admin&password=fuao20091</connectionString>
</jdbcProvider>
<jdbcAuthProvider>
<passwordSQL>SELECT password FROM users WHERE loginName=?</passwordSQL>
<passwordType>plain</passwordType>
</jdbcAuthProvider>
<jdbcUserProvider>
<loadUserSQL>SELECT a.loginName as loginName,b.email as email FROM users a,employee b WHERE a.loginName=? and a.loginName = b.empNo</loadUserSQL>
<userCountSQL>SELECT COUNT(*) FROM users</userCountSQL>
<allUsersSQL>SELECT loginName FROM users</allUsersSQL>
<searchSQL>SELECT loginName FROM users WHERE</searchSQL>
<usernameField>loginName</usernameField>
<nameField>userName</nameField>
<emailField>email</emailField>
</jdbcUserProvider>
<!-- Authentication IntegrationE lzy -->
<connectionProvider>
<className>org.jivesoftware.database.DefaultConnectionProvider</className>
</connectionProvider>
<database>
<defaultProvider>
<driver>com.mysql.jdbc.Driver</driver>
<serverURL>jdbc:mysql://58.59.97.3:3306/openfire</serverURL>
<username>admin</username>
<password>fuao20091</password>
<testSQL>select 1</testSQL>
<testBeforeUse>true</testBeforeUse>
<testAfterUse>true</testAfterUse>
<minConnections>5</minConnections>
<maxConnections>25</maxConnections>
<connectionTimeout>1.0</connectionTimeout>
</defaultProvider>
</database>
<setup>true</setup>
<log>
<debug>
<enabled>true</enabled>
</debug>
</log>
</jive>
替换原来服务器的配置文件 然后重启服务器 登录后台
服务器---服务器管理器---系统属性—修改privider.auth. className 和privider.user. className
有用户组的话也修改privider.group. className(值对应配置文件的路径)
注意
默认管理员要在系统中用户中存在
配置文件对应表ofProperty
发表评论
-
jenkins持续集成(jenkins+docker+mvn+git)
2019-08-16 01:58 0前端构建需要nodejs环境 2个问题 jenkins调用本 ... -
SQl+多服务部署并发访问DB
2018-08-01 10:31 745数据库 student id nam ... -
TCP 三次握手4次挥手收集
2018-07-31 11:36 461原理通俗解释 https://blog.csdn.net/Sp ... -
springboot构建微服务(-)
2016-04-25 19:27 735前面章文章 http://fuaotech.it ... -
自己构建微服务(springmvc+内嵌jetty+maven 环境配置)
2016-04-20 21:00 9185pom.xml文件 <project xml ... -
jetty7 同时并发连接多个目的主机时(100+) 本地tcp端口不够用的解决方案,技术点滴,通讯+多线程
2015-07-17 12:45 1609第一种方法 改注册表 改变这个变量:MaxUserP ... -
jetty3 httpclient性能并发
2015-01-07 23:52 848httpclient的并发连接问题 Poste ... -
关于Java.util.ArrayList和Java.util.Iterator的问题
2011-12-09 17:35 1697关于Java.util.ArrayList和Java.util ... -
Openfire二次开发用户手册
2011-12-08 17:21 1214Openfire二次开发用户手册 冷志勇 参考文档 htt ... -
Hibernate 异常:Illegal attempt to associate a collection with two open sessions
2011-12-08 16:47 11755Hibernate 异常: Illegal attempt ... -
采用CAS原理构建单点登录
2011-12-05 11:03 1445采用CAS原理构建单点登录 企业的信息化过程是一个循 ... -
mysql使用rand随机查询记录效率测试
2011-12-02 17:18 977一直以为mysql随机查询几条数据,就用 SELECT * F ... -
java获取汉子首字母
2011-12-02 17:16 1232public class StringUtil { //pr ... -
空指针错误 java.lang.NullPointerException
2011-12-02 16:47 1636使用基本的JAVA数据类型,变量的值要么已经是默认值, ... -
fckeditor配置
2011-12-01 18:38 1256下载2。6编辑器,和for java 2。3 包解压在网站根目 ... -
Spring 中bean 的生命周期短暂吗?
2011-11-26 15:31 905Spring 中bean 的生命周期短暂吗? 在spring中 ... -
select下拉框显示图片
2011-11-26 15:30 2561select下拉框显示图片 201 ... -
警告:Parameters:Invalid chunk ignored
2011-11-25 19:56 6824警告:Parameters:Invalid chunk ign ... -
Struts+Spring+Hibernate开发实例
2011-11-25 19:55 911Struts+Spring+Hibernate开 ... -
Java核心之Java内存分配原理
2011-11-25 19:54 891JAVA内存分配与管理 ...
相关推荐
Openfire安装配置手册 Openfire是一个基于XMPP协议的即时通讯服务器,提供了强大的聊天功能和插件架构。本手册将指导您搭建开发环境,安装和配置Openfire服务器。 一、 搭建开发环境 要搭建开发环境,需要安装...
标题中的“openfire扩展整合现有系统用户”是指在Openfire这款开源即时通讯服务器上,将已有的用户系统(如企业内部的LDAP、AD等)与Openfire进行集成,实现用户身份验证和管理的一体化。Openfire是一款基于Java开发...
总的来说,Openfire是一个强大且灵活的即时通讯解决方案,其详细的安装教程使得即使对技术不太熟悉的用户也能轻松上手。只需按照步骤进行,你就可以拥有一个属于自己的即时通讯服务器了。在实际使用过程中,如果遇到...
通过安装合适的插件,可以进一步扩展用户管理和整合功能,例如与第三方应用集成,实现单点登录(SSO)。 10. **测试与维护**:整合完成后,需进行充分的测试,确保所有功能正常运行。同时,定期更新Openfire和相关...
在Linux环境下,Openfire是一款基于Java的开源即时通讯(IM)服务器,它允许用户通过XMPP协议进行实时通信。为了在Linux系统上成功安装并配置Openfire,我们需要遵循一系列步骤,涉及的主要组件包括JDK(Java ...
### Openfire + Spark 安装及配置指南 #### 第一章 Java领域的IM解决方案 在Java领域内,一种常用的即时通信(IM)解决方案是采用Openfire作为服务器端,Spark作为客户端,而Smack作为客户端编程库。这套组合不仅...
### Linux字符界面下的OpenFire安装与配置指南 #### 一、前言 本文将详细介绍如何在Linux字符界面下安装和配置OpenFire服务器。OpenFire是一款开源的即时消息服务器,基于XMPP协议,支持多种客户端接入。本文以...
- **安装过程**:使用安装程序`openfire_3_6_4.exe`进行安装,安装过程中选择简体中文,并按照提示操作即可。 - **避免自动启动**:安装完成后,不要勾选启动Openfire的选项,因为接下来需要手动配置数据库驱动。 #...
在本文中,我们将详细介绍 Openfire 的安装和配置过程,并探讨如何使用 Eclipse 进行插件开发。 一、Openfire 的安装和配置 Openfire 的安装非常简单,按照以下步骤即可完成: 1. 下载最新的 Openfire 安装文件,...
安卓的即时通讯软件的开发工具的安装过程,openfire+spack的安装过程
NULL 博文链接:https://bsr1983.iteye.com/blog/2240070
- 使用以下命令来启动 Openfire 服务,并检查其运行状态。 ```bash ./openfire start ./openfire status ``` ##### 5. 数据库配置 - 在 MySQL 中创建名为 `openfire` 的数据库。 ```sql CREATE DATABASE ...
openfire 用户整合,手把手交你实现。
在这个“Openfire安装部署”压缩包中,你应该找到了进行Openfire安装和配置所需的所有文件。接下来,我们将详细讨论Openfire的安装步骤、配置过程以及如何与其他数据库进行集成。 一、Openfire安装 1. 下载...
《Openfire_spark_安装手册.pdf》是一份详细的指南文档,旨在帮助用户了解并完成开源即时通讯(IM)服务器Openfire及客户端Spark的安装配置过程。这份手册适用于希望通过简单部署即可使用的中小型企业(SMB)用户,同时...
### XMPP简介及OpenFire使用手册 #### 一、XMPP概述 **1.1 什么是XMPP** XMPP(Extensible Messaging and Presence Protocol,可扩展消息与存在协议)是目前四大主流即时消息(Instant Messaging, IM)协议之一。...
1. **安装和配置OpenFire**:首先,你需要在服务器上下载并安装OpenFire,配置数据库连接、SSL设置、防火墙规则等,确保服务器能够正常运行。 2. **创建用户**:使用OpenFire管理控制台或API创建用户账号,分配...