Jenkins 报错无法将位于[/jsbundles/config-tabbar.js]的资源添加到Web应用程序[/jenkins]的缓存中,因为在清除过期缓存条目后可用空间仍不足 - 请考虑增加缓

时间:2023-02-16 14:58:51

新安装Jenkins报错无法将位于[/jsbundles/config-tabbar.js]的资源添加到Web应用程序[/jenkins]的缓存中,因为在清除过期缓存条目后可用空间仍不足 - 请考虑增加缓存的最大空间。如下图:

Jenkins 报错无法将位于[/jsbundles/config-tabbar.js]的资源添加到Web应用程序[/jenkins]的缓存中,因为在清除过期缓存条目后可用空间仍不足 - 请考虑增加缓

原因:因为在清除过期缓存条目后可用空间仍不足 ,请考虑增加缓存的最大空间。

解决方法就是在context.xml文件中增加以下的内容:

vim /usr/local/tomcat/tomcat1_jenkins/conf/context.xml

<Resources cachingAllowed="true" cacheMaxSize="100000" />

Jenkins 报错无法将位于[/jsbundles/config-tabbar.js]的资源添加到Web应用程序[/jenkins]的缓存中,因为在清除过期缓存条目后可用空间仍不足 - 请考虑增加缓

然后重启Jenkins

service tomcat_jenkins stop
service tomcat_jenkins start