博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ehcache monitor启动错误UnknownHostException
阅读量:6591 次
发布时间:2019-06-24

本文共 1741 字,大约阅读时间需要 5 分钟。

@echo on
if not defined JAVA_HOME (
  echo JAVA_HOME environment variable must be set
  exit /b 1
)
setlocal enabledelayedexpansion
set JAVA_HOME="%JAVA_HOME:"=%"
set PRGDIR=%~d0%~p0..
set PRGDIR="%PRGDIR:"=%"
set classpath=
for %%F in (%PRGDIR%\lib\*.jar) do (
  set classpath=!classpath!;%%F%
)
Windows下用原始的startup.bat启动monitor会报一个java.net.UnknownHostException, 比较莫名其妙,根据启动log来看基本上应该这个脚本找的Jetty.xml有问题,直接去掉那个-j选项后,可以启动成功
以下是monitor的启动脚本:
java ^
   %JAVA_OPTS% ^
   -server ^
   -Dehcachedx.sampling.seconds=10 ^
   -Dehcachedx.sampling.history=8640 ^
   -server ^
   -cp %classpath% ^
   org.terracotta.ehcachedx.monitor.Monitor start ^
  
-j %PRGDIR%\etc\jetty.xml ^ 去掉
   -f ..\etc\ehcache-monitor.conf %*
endlocal
启动成功后显示以下界面:
May 24, 2013 4:55:35 PM org.terracotta.ehcachedx.license.LicenseResolver resolve
License
WARNING: No  license key found. This monitoring probe software is not licensed f
or production usage, and is only licensed for development usage. See LICENSE.txt
for details. A temporary key will be generated for development usage. When the
temporary key expires, the ing probe capability will be suspended but your abili
ty to continue to use Ehcache will not be affected. Please contact sales@terraco
ttatech.com to request a license.
May 24, 2013 4:55:36 PM org.terracotta.ehcachedx.license.LicenseResolver logLice
nse
INFO:
---------------  license key ---------------
Capabilities: ehcache monitor
Date of Issue: 2013-05-24
Edition: DX
Expiration Date: 2013-05-27
License Number: 0000
License Type: DevOnly
Licensee: DevOnly
Product: Ehcache
-----------------------------------------------
May 24, 2013 4:55:36 PM org.terracotta.ehcachedx.monitor.monitor.MonitorDxServic
e startHTTPListener
INFO: Started monitor at http://10.158.171.102:9889/monitor

转载地址:http://uxuio.baihongyu.com/

你可能感兴趣的文章
利用神经网络编辑图片的调研
查看>>
ubuntu ssh server start
查看>>
C#.NET 大型通用信息化系统集成快速开发平台 4.1 版本 - 对外不要提供Delete方法加强软件的安全性...
查看>>
Centos7安装iptables服务
查看>>
Linux监控(添加自定义监控项,配置邮件告警)
查看>>
HTTP抓包的实践--协议
查看>>
打包成.jar、.war文件的命令
查看>>
71道经典Android面试题和答案--重要知识点都涉及到了
查看>>
我的友情链接
查看>>
Guava学习笔记:Preconditions优雅的检验参数
查看>>
Bootstrap学习笔记(一):bootstrap总体介绍
查看>>
【09】结构型-组合Composite模式
查看>>
查看linux是32位还是64位
查看>>
《转》VMware vSphere 5.1 学习系列之五:安装 vCenter Server
查看>>
Hadoop生态圈
查看>>
Xen server虚拟机的导出和导入图解
查看>>
学习英语的好帮手 — 字典
查看>>
去掉VS2012中的红色波浪下划线
查看>>
配置管理小报100309:C++项目的敏捷实践
查看>>
[文档]关于接口文档的写法
查看>>