+0°
+0°
一 、mysql乱码
解决方法:openfire.xml 进行配置如下
<serverURL>jdbc:mysql://localhost:3306/openfire?useUnicode=true&characterEncoding=utf8</serverURL>
二、问题
org.jivesoftware.database.DbConnectionManager - Unable to get a connection from the database pool (attempt 2 out of 10).
com.mysql.jdbc.CommunicationsException: Communications link failure due to underl...
阅读全文
+0°
2012年08月29日
⁄ linux
⁄ 共 1684字
ubuntu双网卡双IP.不同网关.不同子网.如何同时ping通两块网卡的解决方法,
服务器环境如下:、
系统:ubuntu9.04 X64 server
电信IP(TEL):114.80.227.34 netmask 255.255.255.128 gateway 114.80.227.33
联通IP(CNC):112.65.227.2 netmask 255.255.255.0 gateway 112.65.227.1
1.配置网卡信息
# vi /etc/network/interfaces
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet s...
阅读全文
+0°
+0°
2012年08月28日
⁄ phpweb
⁄ 共 535字
在base templates foot.htm 第一行添加如下代码
{#adminMenu#}{#winpop#}
<DIV style=" MARGIN-TOP: -25px; CLEAR: both; FONT-SIZE: 12px"><!--container2-->
<DIV style="TEXT-ALIGN: center; BACKGROUND: url(/base/templates/images/bottom_pic.jpg) no-repeat center top; PADDING-TOP: 62px"><!--bottom-->
<p>
<!--bottom-->
</p>
<p> </...
阅读全文
+0°
2012年08月27日
⁄ openfire
⁄ 共 3118字
官方解决方法:
I''ve spent far too many hours trawling these forums trying to find a solution to this installation problem on a linux server:
" Openfire Classes Home not found. Define system property "openfireHome" or create and add the openfire_init.xml file to the classpath"
SOLUTION:
edit the file openfire_install_directory/bin/openfire (using any text editor)
insert th...
阅读全文
+0°
2012年08月23日
⁄ openfire
⁄ 共 254字
OpenFire的JVM默认情况下使用64M内存
这在将OpenFire作为服务运行的情况下肯定不够用
我们需要修改参数.使其能够占用服务器的更多内存资源
Windows:
在openfire的bin目录下建立openfired.vmoptions(作为应用程序运行)或者openfire-service.vmoptions(作为服务运行)
内容添加
-Xms512m
-Xmx512m
Linux:
修改/etc/sysconfig/opfire文件
去掉注释
OPENFIRE_OPTS=”-Xmx512m”
重新启动服务
阅读全文
+0°
2012年08月20日
⁄ windows2003 apache
⁄ 共 2658字
命令行运行 mstsc /console /v:服务器名或IP或域名:远程端口 。比如 mstsc /console /v:172.16.18.99:3389
但有时候这样运行之后仍然会出现“终端服务器超出了最大允许连接数”的错误信息,那样的话你可以尝试把 /console 参数换成 /admin 来连接。
附:
mstsc 语法 (Microsoft terminal services client)
mstsc.exe {ConnectionFile|/v:server} [/console] [/f] [/w:width /h:height]
mstsc.exe /edit”ConnectionFile”
...
阅读全文
+0°
删除文件夹下的.svn目录,让文件夹脱离svn控制,把下面的语句拷贝到记事本中,并保持为:svndelete.reg。双击导入到注册表。右键中多了DeleteSVN选项。点击,就可以删除此目录下的.svn选项。
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE/SOFTWARE/Classes/Folder/shell/DeleteSVN]
@="Delete SVN Folders"
[HKEY_LOCAL_MACHINE/SOFTWARE/Classes/Folder/shell/DeleteSVN/command]
@="cmd.exe /c...
阅读全文
+0°