解决Activemq5.8启动报存储空间不足
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决Activemq5.8启动报存储空间不足相关的知识,希望对你有一定的参考价值。
Temporary Store limit is 51200 mb, whilst the temporary data directory: /root/apache-activemq-5.8.0\bin..\data\localhost\tmp_storage only has 4345 mb of usable space解决方法:
修改文件conf/activemq.xml中的以下的配置,根据使用情况修改
<systemUsage>
<systemUsage>
<memoryUsage>
<memoryUsage limit="64 mb"/>
</memoryUsage>
<storeUsage>
<storeUsage limit="1 gb"/>
</storeUsage>
<tempUsage>
<tempUsage limit="1 gb"/>
</tempUsage>
</systemUsage>
</systemUsage>
以上是关于解决Activemq5.8启动报存储空间不足的主要内容,如果未能解决你的问题,请参考以下文章