我是靠谱客的博主 昏睡刺猬,最近开发中收集的这篇文章主要介绍resin 简易配置,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

下载 resin3.1.2

解压缩, 进入resin3.1.2 运行 httpd.exe 启动resin 服务,
访问 http://localhost:8080/

(晕,竟然保存不成功, javaeye 的同学要查查这个bug)
[b]将 resin 注册为 windows 服务[/b]

resin-3.1.2>httpd -install -conf conf/resin.conf

在 resin-3.1.2/conf 目录下提供了一些 .conf 配置文件,应该是启动的配置文件
,没细研究,这里使用了 resin.conf 文件

windows 服务可以使用 net 命令来启动和终止,such as :

resin-3.1.2>net start resin

resin-3.1.2>net stop resin

对于其他的 windows 服务也可以使用 net 来启动,关闭。对于含空格的服务名
用 "" 括起来。

>net start "Windows Time"

>net stop "Windows Time"

试了一下服务名不区分大小写。

[b]移除 resin 服务[/b]


resin-3.1.2>httpd -remove

可以用不同的配置文件注册多个服务,such as:

resin-3.1.2>httpd -install-as resin_minimal -conf conf/minimal.conf

resin-3.1.2>httpd -install-as resin_resin -conf conf/resin.conf

同样用 net 启动,但是不知道怎么删除这个服务。
httpd -remove 无效,只好用 sc delete 服务名了

>sc delete resin_minimal

最后

以上就是昏睡刺猬为你收集整理的resin 简易配置的全部内容,希望文章能够帮你解决resin 简易配置所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部