1. 程式人生 > >解決Activemq5.8啟動報存儲空間不足

解決Activemq5.8啟動報存儲空間不足

tmp 使用 sage temp spa conf XML pac ble

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啟動報存儲空間不足