centos7自动清理服务由于定期自动清理tmp目录,导致springboot在tmp的tomcat缓存被清理,偶尔失效无法正常展示页面。
处理办法如下:
1、编辑tmp配置文件
vm /usr/lib/tmpfiles.d/tmp.conf
2、增加清理过虑规则
x /tmp/tomcat.*
3、重启自动清理服务
sudo systemctl restart systemd-tmpfiles-clean.service
centos7自动清理服务由于定期自动清理tmp目录,导致springboot在tmp的tomcat缓存被清理,偶尔失效无法正常展示页面。
处理办法如下:
1、编辑tmp配置文件
vm /usr/lib/tmpfiles.d/tmp.conf
2、增加清理过虑规则
x /tmp/tomcat.*
3、重启自动清理服务
sudo systemctl restart systemd-tmpfiles-clean.service