ann
冰是没有未来的,因为它的永恒
posts - 107,comments - 34,trackbacks - 0
06 2009 档案
linux script配置      摘要: Manipulating the start and stop order of Linux servicesThis document (7002295) is provided subject to the disclaimer at the end of this document.

Environment
Novell SUSE Linux
Novell SUSE Linux Enterprise Server 9
Novell SUSE Linux Enterprise Server 10
Novell SUSE Linux Enterprise Desktop 10

Situation
In some circumstances, the start and stop order of a service needs to be manipulated.
How to add start and stop orders to a custom service

Resolu  阅读全文
posted @ 2009-06-30 17:05 冰是没有未来的,因为它的永恒| 编辑
linux安装openMQ      摘要: 1. 下载openMQ安装文件 openmq4_3-installer-Unix.zip 到/home/zhshp

2. 解压zip文件
1) . 复制zip文件到opt/
cp /home/zhshp/openmq4_3-installer-Unix.zip /opt/
2) . 解压zip
cd /opt/
unzip openmq4_3-installer-Unix.zip
3. 安装
1) . 创建answerfile
在 /opt/mq4_3-zip-installer/ 创建answerfile 例如 :见/home/zhshp/nswerfile
2) . 安装 installer -s -a answerfile
3) 修改imqbroker配置文件:sudo vim etc/mq/imqbro  阅读全文
posted @ 2009-06-23 15:20 冰是没有未来的,因为它的永恒| 编辑
建立link      摘要: ln -s /data/tomcat /opt/tomcat  阅读全文
posted @ 2009-06-17 14:21 冰是没有未来的,因为它的永恒| 编辑
linux清空文件内容      摘要: :> domains/domain1/logs/server.log   阅读全文
posted @ 2009-06-17 13:59 冰是没有未来的,因为它的永恒| 编辑
nginx配置rewrite      摘要: 例子 修改$


user syncher syncher;
worker_processes 2;
events {
use epoll; # for linux
worker_connections 1024;
}


http {
include mime.types;
default_type application/octet-stream;


#access_log logs/access.log main;

sendfile on;
#tcp_nopush on;

#keepalive_timeout 0;
keepalive_timeout 65;

gzip on;

upstream tomcats {
  阅读全文
posted @ 2009-06-17 13:38 冰是没有未来的,因为它的永恒| 编辑
linux查看磁盘剩余空间      摘要: df -hl 查看磁盘剩余空间

du -sm 文件夹
返回该文件夹总M数  阅读全文
posted @ 2009-06-17 11:26 冰是没有未来的,因为它的永恒| 编辑
glassfish中load application顺序问题      摘要: 解决的方案:部署在不同的domain中,并控制domain启动的顺序

例子:applications: RestaurantCenter (比mobile先load);mobile。

服务器: 内网192.168.1.18上
glassfish的路径:/opt/glassfish2.1

1.首先,创建两个domain :domain1,domain2
创建domain1 :ant -f setup1.xml



posted @ 2009-06-16 15:23 冰是没有未来的,因为它的永恒| 编辑
glassfish 已知问题和限制      摘要: 已知问题和限制
http://docs.sun.com/app/docs/doc/820-7430/knownissuessges?a=view
  阅读全文
posted @ 2009-06-16 11:01 冰是没有未来的,因为它的永恒| 编辑
升级后启动域时,您会在日志中看到以下异常。(6774663)      摘要: 说明
可能会抛出以下异常:

#|2008-11-19T01:44:37.422+0530|SEVERE|sun-appserver9.1|org.apache.catalina.session.ManagerBase|_ThreadID=17;_ThreadName=pool-1-thread-3;_Req uestID=cc0ddf54-a42e-400a-9788-e30d79a25d88;|PWC2768: IOException while loading persisted sessions: java.io.InvalidClassException: org.apache .catalina.session.StandardSession; local class incompatible: stream classdesc serialVersionUID = 8647852380089530442, local class serialVersi onUID = -8515037662877107054 java.io.InvalidClas  阅读全文
posted @ 2009-06-16 11:00 冰是没有未来的,因为它的永恒| 编辑
特定于 INTERNET EXPLORER 6.0/7.0 浏览器:导出负载平衡器配置文件会抛出错误 (6516068)      摘要: 说明
(仅 Internet Explorer 6 和 7)当尝试从 Internet Explorer 6 或 7 导出负载平衡器配置文件 (loadbalancer.xml) 时,浏览器会显示错误消息,表示找不到 sun-loadbalancer_1_2.dtd DTD 文件。
解决方法
要保存此文件,请使用以下解决方法:
在 Internet Explorer 中,在“负载平衡器”页上单击“导出”。
将显示“XML page cannot be displayed”消息。
单击错误框,然后从 Internet Explorer 中选择“文件”->“另存为”。
将 loadbalancer.xml 文件保存到所选目录中。

  阅读全文
posted @ 2009-06-16 10:53 冰是没有未来的,因为它的永恒| 编辑
glassfish启动 --java.rmi.server.ExportException      摘要: glassfish启动的时候:

.1|javax.enterprise.system.core|_ThreadID=10;_ThreadName=main;|UnknownException during st
artup. Disable quick startup by setting system property com.sun.enterprise.server.ss.ASQuickStartup to false
com.sun.appserv.server.ServerLifecycleException: java.rmi.server.ExportException: Port already in use: 0; nested exception is:
java.net.BindException: Can't assign requested address
at com.sun.enterprise.admin.server.core.channel.AdminChannel.createRMIChannel(  阅读全文
posted @ 2009-06-16 09:26 冰是没有未来的,因为它的永恒| 编辑
linux java main函数启动的例子      摘要: java -cp "./WEB-INF/lib/*:./WEB-INF/classes" bran.RestaurantCenterJettyStarter
nohup java -cp "./WEB-INF/lib/*:./WEB-INF/classes" bran.RestaurantCenterJettyStarter >log.log & 退出时候,不中断  阅读全文
posted @ 2009-06-15 18:02 冰是没有未来的,因为它的永恒| 编辑
solr int Querying Ranges Problem      摘要: Ensure that the fieldType maps back to solr.SortableIntField rather
than solr.IntField  阅读全文
posted @ 2009-06-13 17:45 冰是没有未来的,因为它的永恒| 编辑
unconpilable exception code in netbeans      摘要: have a little testcase:

Class enumClass = TestEnum.class;
System.out.println(TestEnum.我);
Method method = null;
method = enumClass.getDeclaredMethod("values", new Class[0]);
Object[] values = (Object[]) method.invoke(null, new Object[0]);
Assert.assertTrue(values.length > 0);
System.out.println(values[0]);

The method invocation blows out and complains uncompilable code

The reason seems to   阅读全文
posted @ 2009-06-13 14:38 冰是没有未来的,因为它的永恒| 编辑
glassfish linux 安装      摘要: 1.下载- ref : https://glassfish.dev.java.net/downloads/v2.1-b60e.html

-
2.解压下载的jar # java -Xmx256m -jar glassxxx.jar
3.复制到安装的路径下 copy th glassfish to /opt/glasfish2.1

# cd glassfish2.1
如果系统没安装ant # chmod -R +x lib/ant/bin

make sure tomcat is not running on 8080, I changed to run on 18080



4. 安装 # lib/ant/bin/ant -f setup.xml

cannot move the dir after the above step.


ends results:

create.domain:
[exe  阅读全文
posted @ 2009-06-13 12:11 冰是没有未来的,因为它的永恒| 编辑
jetty starter 不检查 端口是否被占用      摘要: jetty starter 不检查 端口是否被占用

connector.setReuseAddress(false);

这样就不能重复启动同一个 jetty 了.
  阅读全文
posted @ 2009-06-12 15:15 冰是没有未来的,因为它的永恒| 编辑
solrj的相关网址      摘要: http://mxsfengg.javaeye.com/?show_full=true
http://clayz.javaeye.com/?page=2&show_full=true
http://mxsfengg.javaeye.com/blog/277913  阅读全文
posted @ 2009-06-03 11:55 冰是没有未来的,因为它的永恒| 编辑
Google geo API      摘要: http://ditu.google.com/maps/geo?output=json&oe=utf-8&q=要查的地址

/**
* a positive response:
*
*
{
"name": "上海金桥开发区",
"Status": {
"code": 200,
"request": "geocode"
},
"Placemark": [
{
"id": "p1",
"address": "中国上海市浦东新区金桥开发\r\r\n区",
"AddressDetails": {
"Country": {
"CountryNameCode": "CN",
"  阅读全文
posted @ 2009-06-03 09:57 冰是没有未来的,因为它的永恒| 编辑
为已经存在的数据库添加GIS功能      摘要: PgAdmin, open up the SQL window by clicking the SQL button (the one with the pencil).
Choose “File  Open…” and navigate to

C:\Program Files\PostgreSQL\8.3\share\contrib\lwpostgis.sql

Press the “Run” button. (The green triangle.) The lwpostgis.sql file will execute, loading the PostGIS functions and objects into the “postgis” database.

Choose “File  Open…” and navigate to

C:\Program Files\PostgreSQL\8.3\share\contrib\spatial_ref_sys.sql  阅读全文
posted @ 2009-06-03 09:55 冰是没有未来的,因为它的永恒| 编辑
成批转换java 文件的编码      摘要: netbeans项目中缺省使用 utf-8. 这要求所有的源文件使用 utf8 编码有些源文件是从别的文件系统中拷贝出来, 可能使用别的编码方式, 例如 iso-8859-1. 如果其中有 Ascii 扩展字符, 则 编译的时候会抱怨有 并不认识的 unicode 编码. (ummapped unicode characters)

解决方法: 使用 GNU iconv 工具进行批处理转换.

- iconv 在 cygwin 中有发布, 需要 iconv2 包. 也有单独的 windows 版本.

- 在 一个临时文件目录两种建立和源目录相同的目录结构: 拷贝过去以后, find . -name "*.*" | xargs rm, find . -name ".svn" | xargs rm -R
- 在源文件目录中: $ for a in `find . -name "*.java"`; do iconv -f iso-8859-1 -t utf-8 <"$a" > /tmp/"$a" ; done
阅读全文
posted @ 2009-06-03 09:52 冰是没有未来的,因为它的永恒| 编辑
标记javabean 属性不要映射到 xml      摘要: JTS Geometry 对象不能被 JAXB 映射成xml.

可使用一下的方法避免指定的 java bean property 不被 xml 话

在 bean 的class级别:

@XmlAccessorType(XmlAccessType.FIELD) // for jaxb to ananlyze the object

然后在 field 上面

@XmlTransient


如果没有 XmlAccessorType, 则需要把 @XmlTransient 放在getter 上面.  阅读全文
posted @ 2009-06-03 09:44 冰是没有未来的,因为它的永恒| 编辑

当下,把心放下 放下如果是可能的,那一定是在当下,
不在过去,也不在未来。
当下放下。唯有活在当下,你的问题才能放下。