从 JConsole 查看 QuartzScheduler MBean
我想从 JConsole 查看和管理 Quartz Scheduler。我配置了石英道具。
org.quartz.scheduler.rmi.export=true
org.quartz.scheduler.rmi.registryPort=1099
org.quartz.scheduler.rmi.createRegistry=true
org.quartz.scheduler.rmi.registryHost=localhost
org.quartz.scheduler.skipUpdateCheck=true
org.quartz.jobStore.misfireThreshold=60000
org.quartz.jobStore.class=org.quartz.simpl.RAMJobStore
org.quartz.threadPool.class=org.quartz.simpl.SimpleThreadPool
org.quartz.threadPool.threadCount=10
org.quartz.threadPool.threadPriority=5
但我无法使用 url 连接 jconsole
service:jmx:rmi://localhost/jndi/rmi://localhost:1099/jmxrmi
请帮忙。
I would like to see and manage Quartz Scheduler from JConsole. I configured the quartz props.
org.quartz.scheduler.rmi.export=true
org.quartz.scheduler.rmi.registryPort=1099
org.quartz.scheduler.rmi.createRegistry=true
org.quartz.scheduler.rmi.registryHost=localhost
org.quartz.scheduler.skipUpdateCheck=true
org.quartz.jobStore.misfireThreshold=60000
org.quartz.jobStore.class=org.quartz.simpl.RAMJobStore
org.quartz.threadPool.class=org.quartz.simpl.SimpleThreadPool
org.quartz.threadPool.threadCount=10
org.quartz.threadPool.threadPriority=5
But I am not able to connect the jconsole using the url
service:jmx:rmi://localhost/jndi/rmi://localhost:1099/jmxrmi
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 http://jira.opensymphony.com/browse/QUARTZ-300
您需要 Quartz 1.6 和 commons-modeler 在你的类路径中。添加
到您的石英配置中。
See http://jira.opensymphony.com/browse/QUARTZ-300
You need Quartz 1.6 and commons-modeler in your classpath. The add
in your quartz configuration.