ActiveMQ 无法访问管理页面

./bin/activemq start 启动activemq
netstat -anpt 端口已经打开了
(防火墙记得关了或者配置规则)
ActiveMQ 无法访问管理页面
查询日志,发现报错内容
tail -f ./data/activemq.log
| WARN | Store limit is 102400 mb (current store usage is 0 mb). The data directory: /root/apache-activemq-5.15.8/data/kahadb only has 15872 mb of usable space. - resetting to maximum available disk space: 15872 mb | org.apache.activemq.broker.BrokerService | main
| WARN | Temporary Store limit is 51200 mb (current store usage is 0 mb). The data directory: /root/apache-activemq-5.15.8/data only has 15872 mb of usable space. - resetting to maximum available disk space: 15872 mb | org.apache.activemq.broker.BrokerService | main
需要存储大小102400mb temp51200mb ,我还剩15G。。
修改一下配置文件
vim ./conf/activemq.xml
ActiveMQ 无法访问管理页面
100G改成了1G
50G改成了500mb
问题解决
http://localhost:8161/admin/
ActiveMQ 无法访问管理页面