Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I automatically clean up my $JBOSS_HOME/standalone/tmp directory?

I’m using JBoss 7.1.3.Final on my dev machine, a Mac 10.9.1. I’m trying to get my /tmp/vfs directory to clean itself up (with a max caching time of a day), so I added this line to my $JBOSS_HOME/bin/standalone.conf file …

JAVA_OPTS="$JAVA_OPTS -Djboss.vfs.cache=org.jboss.virtual.plugins.cache.IterableTimedVFSCache -Djboss.vfs.cache.TimedPolicyCaching.lifetime=86400"

I confirmed that the system properties are getting loaded when I start my server. However, after restart, I still see directories in the $JBOSS_HOME/standalone/tmp/vfs that are more than a day old. Is something about the above wrong or is there another parameter I need to add to get that directory to clean out?

like image 751
Dave Avatar asked Oct 20 '22 12:10

Dave


1 Answers

You do not need to set VFS system properties. Also your properties come from VFS2 that was used AS5/6 times.

AS7+ has newer/different implementation of VFS and handles this things differently.

There ware few bugs in 7.1.x in this area and ware fixed in WildFly 8 Beta1.

See jira for more info about this.

I would recommend you upgrading to WildFly 8.

like image 111
Tomaz Cerar Avatar answered Nov 15 '22 12:11

Tomaz Cerar