为activemq指定运行的jdk版本

apache-activemq-5.15.2\bin下env文件

写道
# Location of the java installation
# Specify the location of your java installation using JAVA_HOME, or specify the
# path to the "java" binary using JAVACMD
# (set JAVACMD to "auto" for automatic detection)
#JAVA_HOME=""
JAVACMD="auto"

 JAVA_HOME修改即可

启动./activemq start

 

列表各列信息含义如下:
Number Of Pending Messages  :等待消费的消息 这个是当前未出队列的数量。
Number Of Consumers  :消费者 这个是消费者端的消费者数量
Messages Enqueued  :进入队列的消息  进入队列的总数量,包括出队列的。
Messages Dequeued  :出了队列的消息  可以理解为是消费这消费掉的数量。

 

相关推荐