Java HotSpot(TM) 64-Bit Server VM warning: Insufficient space for shared memory file:
/tmp/hsperfdata_work/23408
Try using the -Djava.io.tmpdir= option to select an alternate temp location.
错误表示某区内存已满!
df -h 查看内存使用情况。
解决:
输入命令 find / -size +200M -exec du -h {} \; 查看大于200M的文件(首选删除日志文件)。
直接删除logs下面的所有文件
rm -rf ./logs/*
原文地址:https://www.cnblogs.com/Jeremy2001/p/10715974.html
时间: 2024-10-07 15:05:24