« | August 2025 | » | 日 | 一 | 二 | 三 | 四 | 五 | 六 | | | | | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | | | | | | | |
| 公告 |
戒除浮躁,读好书,交益友 |
Blog信息 |
blog名称:邢红瑞的blog 日志总数:523 评论数量:1142 留言数量:0 访问次数:9692705 建立时间:2004年12月20日 |

| |
[j2ee]pebble从tomcat移植到resin 原创空间, 软件技术
邢红瑞 发表于 2005/9/4 15:33:42 |
说实话,pebble是个不错的blog,比我原来的那个好多了.好不容易找到一个免费的resin服务器,当然是蹭的.移植遇到了不少麻烦,先说tomcat下的安装1.下载pebble,这是废话2.从pebble-weblog目录中copy pebble.war到$TOMCAT_HOME/webapps3.在$TOMCAT_HOME/conf/tomcat-users.xml 文件中加入以下文字<user username="someuser" password="password" roles="blog-owner,blog-contributor"/>4.重起tomcat,输入http://localhost:8080/pebble/就可以访问,点击右下角login就可以登录.resin麻烦一些,找了半天资料,才知道resin中servlet容器role的写法,在resin的RESIN_HOME/conf/resin.conf 加入以下文字<web-app id='blog' document-directory='D:\pebble'> <authenticator> <type>com.caucho.server.security.XmlAuthenticator</type> <init> <user>someuser:password:blog-owner,blog-contributor</user> <password-digest>none</password-digest> </init> </authenticator> </web-app>出现了大量的too many includes错误信息,当时晕倒,一天后才想起都是jstl惹的祸,必须禁止 Resin的 "fast" JSTL实现,改为<web-app id='blog' document-directory='D:\pebble'> <jsp fast-jstl='false'/>
<authenticator> <type>com.caucho.server.security.XmlAuthenticator</type> <init> <user>someuser:password:blog-owner,blog-contributor</user> <password-digest>none</password-digest> </init> </authenticator> </web-app>谁说j2ee服务器的移植是容易的. |
|
回复:pebble从tomcat移植到resin 原创空间, 软件技术
henliqi(游客)发表评论于2006/8/7 11:41:02 |
我再tomcat上安装,为什么出现
HTTP Status 404 - /pebble/
type Status report
message /pebble/
description The requested resource (/pebble/) is not available.
Apache Tomcat/5.0.28 |
|
回复:pebble从tomcat移植到resin 原创空间, 软件技术
shihao(游客)发表评论于2006/4/10 14:00:31 |
忘了email了。
shihao@operamail.com
|
|
回复:pebble从tomcat移植到resin 原创空间, 软件技术
shihao(游客)发表评论于2006/4/10 13:59:06 |
[ 好不容易找到一个免费的resin服务器,当然是蹭的. ]
能蹭个给我吗?
Resin Professional has not found any valid licenses.
Licenses belong in \resin-pro-3.0.18\licenses.
See http://www.caucho.com/sales for licensing information.
好痛苦阿 |
|
回复:pebble从tomcat移植到resin 原创空间, 软件技术
千年老妖(游客)发表评论于2005/9/23 14:52:16 |
|
» 1 »
|