Clearing of /var/tmp/logs

Hi all,
Until now..we are clearing the logs manually by
find /var/tmp -name '*.dbg' -mtime +0 -exec rm {} \;
Now...needed to write a script..when ever the /var/tmp mount point reaches a threshold of 90% the above command should fire...
How can i do the above...
thanks,
baskar.l

Removing those logs is usually done not by database, but by OS commands, manualy or automatic.
The best thing for you would be to write simple shell script, place it in the cron and schedule execution intervals based on you instance activity.
You will need few variables in that script , one of them will propably be for holding the value got from os specific disk usage command and one for
holding your desired treshold value.
Then you could use if-then-else logic to compare those two values through those two variables and when matched execute your removal command.

Similar Messages

  • /var/tmp not getting cleaned out...

    This might not exactly apply to the Finder, Dock or Dashboard but it is file maintenance, and I don't see a closer match.
    I've noticed that my /var/tmp directory has a lot of files that are pretty old. There's 3 directories there that seem to be written to daily...those I wouldn't touch... But there's a whole bunch of files that are named things like: 4568943754a6d... around 56M worth each is ~1.5M
    Why are these not getting automatically cleaned up? Is there a limit to this directory that could be causing me issues. I have several but I don't dare mention them here for fear of being told to open a new post
    Thanks!

    Hi again
    does the '3 days ago' actually set the time? so '1 week ago' would be valid too?Ah, was afraid you might ask that
    '3 days ago' does "set the time" as you say. '1 week ago' might work, but the man pages are not particularly helpful on what works and what doesn't. The find man page refers you to the cvs man page, which says:
    However, cvs currently accepts a wide variety of other date formats. They are intentionally not documented here in any detail, and future versions of cvs might not accept all of them.But that gives an example of "1 hour ago" being valid, so I tried a few variations
    wacking whole directories scares me... especially since there are live directories in here that I think shouldn't be deleted... can I take this part out?Yes, you can leave out the complete second "find" command if you wish. But applications shouldn't leave files or folders lying around in /tmp or /var/tmp and expect them to still be there when they come back!
    excuse my ignorance what language is this?This is the Bourne Shell or more accurately bash. You can try reading the man page, but if you're interested I think you'd find an introductory shell scripting book a lot more readable!
    My weekly hasn't run since Nov 18th but the Monthy and daily both say Dec 1st!!!No problem. My weekly hasn't run since Nov 15th. It will eventually get run, after about a week of cpu time (not sleeping).
    Now that the periodic scripts are managed by launchd, rather than cron, they do eventually get run. Unless you are running a busy server with hundreds of users, rotating the log files is no big deal with today's typical disk sizes.

  • Automounting EncFS encrypted /var/tmp using pam_encfs

    I've encrypted /var/tmp using encfs and tried to set up automounting using pam_encfs, following the instructions at https://wiki.edubuntu.org/EncryptedHomeFolder, linked on the Arch Wiki. Basically, what I've done is the following:
    1. Install pam_encfs
    2. Insert the line "auth sufficient pam_encfs.so" into /etc/pam.d/login and append "use_first_pass" to every subsequent line (see below)
    3. Change the source and target in am_encfs.conf to /var/.tmp and /var/tmp, and change "allow_other" to "nonempty"
    4. Add fuse to the modules array in /etc/rc.conf
    5. Add myself to the fuse group
    6. Run "sudo encfs /var/.tmp /var/tmp" and set it up with the default options and my login password
    When I restart and login, however, /var/tmp is not mounted. I can manually mount it with "sudo encfs /var/.tmp /var/tmp".
    Here is my /etc/pam.d/login:
    #%PAM-1.0
    auth required pam_securetty.so
    auth requisite pam_nologin.so
    auth sufficient pam_encfs.so
    auth required pam_unix.so nullok use_first_pass
    auth required pam_tally.so onerr=succeed file=/var/log/faillog use_first_pass
    # use this to lockout accounts for 10 minutes after 3 failed attempts
    #auth required pam_tally.so deny=2 unlock_time=600 onerr=succeed file=/var/log/faillog
    account required pam_access.so use_first_pass
    account required pam_time.so use_first_pass
    account required pam_unix.so use_first_pass
    #password required pam_cracklib.so difok=2 minlen=8 dcredit=2 ocredit=2 retry=3
    #password required pam_unix.so sha512 shadow use_authtok
    session required pam_unix.so use_first_pass
    session required pam_env.so use_first_pass
    session required pam_motd.so use_first_pass
    session required pam_limits.so use_first_pass
    session optional pam_mail.so dir=/var/spool/mail standard use_first_pass
    session optional pam_lastlog.so use_first_pass
    session optional pam_loginuid.so use_first_pass
    -session optional pam_ck_connector.so nox11 use_first_pass
    -session optional pam_systemd.so use_first_pass
    and my /etc/security/pam_encfs.conf:
    #This file is parsed top to bottom, until the first mount line that matches is found, then it stops.
    #Note that I dont support spaces in params
    #So if your for example gonna specify idle time use --idle=X not -i X.
    #If this is specified program will attempt to drop permissions before running encfs.
    #(will not work with --public for example, as that requires encfs to run as root)
    drop_permissions
    #This specifies which options to pass to encfs for every user.
    #You can find encfs options by running encfs without any arguments
    encfs_default --idle=1
    #Same for fuse, note that allow_root (or allow_other, or --public in encfs) is needed to run gdm/X.
    #you can find fuse options with encfs -H
    fuse_default allow_root,nonempty
    #For a mount line, - = generic, we try to fill in what we need.
    #A Mount line is constructed like this:
    #USERNAME if "-" or "*" gets replaced with $USER
    #SOURCE if USERNAME is -, replace with path + /$USER
    # if USERNAME is *, replace with $HOME/ + sourcepath
    #TARGET PATH if - replace with $HOME
    # if USERNAME is *, replace with $HOME/ + targetpath
    #ENCFS OPTIONS encfs options here is encfs_default + encfs_options
    #FUSE OPTIONS encfs options here is fuse_default + fuse_options
    #Keep in mind that the configuration file is parsed top to bottom, so if you put your generic line on top,
    #that will always match before any custom lines under it.
    #In this example, with example_user uncommented, the "-" line will never be parsed if you login as example_user.
    #In the lines with the USERNAME "*", all paths are relative to $HOME
    #USERNAME SOURCE TARGET PATH ENCFS Options FUSE Options
    #example_user /mnt/enc/example_user /home/example_user -v,--idle=1 allow_root
    #* .private private -v allow_other
    - /var/.tmp /var/tmp -v,>/home/ian/log nonempty
    The ">/home/ian/log" option at the bottom was an attempt to direct the output of the command pam_encfs runs to a file, but it didn't create a log file when I tried it. If anyone knows how to do this correctly, that would probably be pretty helpful, since it's difficult to debug without knowing what's failing.
    Thanks in advance for any advice.

    I think I figured it out. It is indeed a configuration issue.
    I found a post on the internet where someone suggested putting the items I had added to /etc/pam.d/system-auth in /etc/pam.d/system-login instead. I also read the documentation for PAM linux (http://linux-pam.org/), as previously I had only been reading the documentation for pam_mount. Then, by looking at all of the files in /etc/pam.d/ I figured out what was going on.
    I turns out system-auth is just used by too many other services. In particular, I believe it was the use by the systemd-user service that was causing an issue in this case.
    The catch was that system-login is also used by systemd-user, so even that probably wouldn't have fixed the problem.
    What I ended up doing was creating a new file that contained only the pam_mount and pam_ecryptfs lines I had added to system-auth previously. Then I modified system-local-login and system-remote-login to include that new file.
    I'll also need to make some modifications to the appropriate file for the graphical login manager when I set that up.
    Marked thread solved in case this helps anyone else in the future.
    Tom
    Last edited by tom101 (2013-12-28 16:27:21)

  • Upgraded to Mavericks - System errors popping up in /private/var/tmp ... Help!!

    Hi there,
    Ever since I upgraded to Mavericks, and installed my standard software, I'm getting some odd behaviour.
    Every so often (no discernable pattern so far) my Finder pops up with a new window in /private/var/tmp.  There is a huge system stacktrace printed out in a file with the following format: "
    sysdiagnose_2013.10.30_19-53-16-MDT_9956.tar.gz
    There are a ton of files in there, so I have no idea how to figure out what is crashing and causing it. I get no "system crash message" to go along with it.
    $ la
    total 51592
    drwxr-x---  55 brandon  staff      1870 Nov  2 12:23 ./
    drwxrwxrwt  10 root     wheel       340 Nov  2 12:23 ../
    drwxr-xr-x@  4 brandon  staff       136 Oct 31 05:50 Brandons MacBook.mdsdiagnostic/
    drwxr-xr-x   7 brandon  staff       238 Nov  2 12:23 DiagnosticMessages/
    drwxr-xr-x  10 brandon  staff       340 Oct 31 05:50 SystemConfiguration/
    -rw-r--r--   1 brandon  staff       343 Oct 31 05:50 airport_info.txt
    -rw-r--r--   1 brandon  staff     24735 Oct 31 05:50 apsd-status.txt
    -rw-r--r--   1 brandon  staff      3623 Oct 31 05:50 bc_stats.txt
    -rw-r--r--   1 brandon  staff       838 Oct 31 05:50 bootstamps.txt
    drwxr-xr-x  29 brandon  staff       986 Nov  2 12:23 crashes_and_spins/
    -rw-r--r--   1 brandon  staff       888 Oct 31 05:50 dig-results.txt
    -rw-r--r--   1 brandon  staff       368 Oct 31 05:50 disks.txt
    -rw-r--r--   1 brandon  staff      5034 Oct 31 05:50 diskutil.txt
    -rw-r--r--   1 brandon  staff      1339 Oct 31 05:50 error_log.txt
    -rw-r--r--   1 brandon  staff    312320 Oct 31 05:50 footprint.fpdata
    -rw-r--r--   1 brandon  staff      6671 Oct 31 05:50 footprint.txt
    -rw-r--r--   1 brandon  staff   1635003 Oct 31 05:49 fs_usage.txt
    -rw-r--r--   1 brandon  staff     11583 Oct 31 05:50 fsck_hfs_user.log
    -rw-r--r--   1 brandon  staff     24176 Oct 30 23:45 fsck_hfs_var.log
    -rw-r--r--   1 brandon  staff      1112 Oct 31 05:50 gpt.txt
    -rw-r--r--   1 brandon  staff      2317 Oct 31 05:50 ifconfig.txt
    drwxr-xr-x   8 brandon  staff       272 Oct 31 05:50 ioreg/
    -rw-r--r--   1 brandon  staff       556 Oct 31 05:50 ipconfig.txt
    -rw-r--r--   1 brandon  staff     12945 Oct 31 05:50 kextstat.txt
    drwxr-xr-x  22 brandon  staff       748 Nov  2 12:23 logs/
    -rw-r--r--   1 brandon  staff     84574 Oct 31 05:50 lsappinfo.txt
    -rw-r--r--   1 brandon  staff   1003463 Oct 31 05:50 lsof.txt
    -rw-r--r--   1 brandon  staff    948932 Oct 31 05:50 lsregister.txt
    -rw-r--r--   1 brandon  staff   2603456 Oct 31 05:50 microstackshots
    -rw-r--r--   1 brandon  staff  12050663 Oct 31 05:50 microstackshots_lastday.txt
    -rw-r--r--   1 brandon  staff   1701106 Oct 31 05:50 microstackshots_lasthour.txt
    -rw-r--r--   1 brandon  staff    133219 Oct 31 05:50 microstackshots_lastminute.txt
    -rw-r--r--   1 brandon  staff       195 Oct 31 05:50 mount.txt
    drwxr-xr-x   8 brandon  staff       272 Oct 31 05:50 netstat/
    -rw-r--r--   1 brandon  staff         0 Oct 31 05:50 nfsstat.txt
    -rw-r--r--   1 brandon  staff     22642 Oct 31 05:50 odutil.txt
    -rw-r--r--   1 brandon  staff    189162 Oct 31 05:50 pmset_everything.txt
    -rw-r--r--   1 brandon  staff    119937 Oct 31 05:50 powermetrics.txt
    -rw-r--r--   1 brandon  staff     39115 Oct 31 05:49 ps.txt
    -rw-r--r--   1 brandon  staff    130781 Oct 31 05:49 ps_thread.txt
    -rw-r--r--   1 brandon  staff       143 Oct 31 05:50 reachability-info.txt
    -rw-r--r--   1 brandon  staff       305 Oct 31 05:11 resolv.conf
    -rw-r--r--   1 brandon  staff      1409 Oct 31 05:50 scutil.txt
    -rw-r--r--   1 brandon  staff      8942 Oct 31 05:49 smcDiagnose.txt
    -rw-r--r--   1 brandon  staff   3027018 Oct 31 05:49 spindump.txt
    -rw-r--r--   1 brandon  staff    514781 Oct 31 05:50 stackshot-last-sym.log
    -rw-r--r--   1 brandon  staff     31697 Oct 31 05:50 sysctl.txt
    -rw-r--r--   1 brandon  staff     31827 Oct 31 05:50 sysdiagnose.log
    -rw-r--r--   1 brandon  staff     64463 Oct 31 05:50 system_profiler.spx
    -rw-r--r--   1 brandon  staff    953612 Oct 31 05:49 taskinfo.txt
    -rw-r--r--   1 brandon  staff    395179 Oct 31 05:49 top.txt
    -rw-r--r--   1 brandon  staff       305 Oct 31 05:11 var_run_resolv.conf
    -rw-r--r--   1 brandon  staff     10930 Oct 31 05:49 vm_stat.txt
    -rw-r--r--   1 brandon  staff    169255 Oct 31 05:50 vmmap-38738.txt
    -rw-r--r--   1 brandon  staff     25105 Oct 31 05:50 zprint.txt
    Any help you could provide would be appreciated!

    When pressing Cmd-Opt-Ctrl-Shift-Period, 'sysdiagnose' is triggered. It takes a few minutes to complete. When ready, the output will automatically be revealed in a Finder window.

  • [SOLVED] Is /var/tmp on RAM?

    I was reading about creating a ramdisk to prolong the life of my SSD, and it seems like a quick solution is to move files to /var/tmp, as these files aren't deleted but are still temprorary. Are they on RAM or are they just stored on my regular drive?
        Thanks, ~Unsolved Cypher
    Last edited by UnsolvedCypher (2012-12-31 19:14:24)

    65kid wrote:
    UnsolvedCypher wrote:What I want to do is to put /var/tmp onto my RAM, but make sure that it does not clear on reboot. How would I go about doing this?
    you can't do this. RAM drive = lost on reboot.
    UnsolvedCypher wrote:Also, SSDs would last about 20 years if 50 GB was written daily. So yes, they last a while, but I'd just like to reduce unnecessary writes in addition to the nice speed boost.
    They are not unnecessary, applications don't just write there for no reason.
    I still don't see the point of this, just don't worry about it.
    I believe it would be possible to copy the files back to my SSD before reboot or shutdown. Also, I have symbolically linked some applications' caches and other operational files to this location thinking that the tmp meant that it was on tmpfs. So, I would like to actually put this on tmpfs.
    Example: Browser running from RAM reduces tiny file writes and also speeds up things like cache.

  • Redirecting /var/tmp during wlwBuild on Unix

    I have an ANT script that calls out wlwBuild to do the WLI 8.1 SP3 application build.
    On Windows, it uses C:\TEMP folder to create tmp files. On Unix it is using /var/tmp folder to create tmp files.
    My Unix env TMP variable is set to /tmp/xi, but the wlwBuild in the ANT still ends up creating files in /var/tmp. How do I make the wlwBuild create tmp files in /tmp/xi instead of /var/tmp ?
    If wlwBuild is using Java Option "java.io.tmpdir", then where should I set it so that wlwBuild can pick up that value ?
    Thanks in advance
    -Anil

    Follow the instructions in metalink note 1070675.6
    (SNMPD Log Is Filling Up Quickly), this should help.

  • How do you clear system and application logs in a server?

    Hello all,
    How do you clear system and application logs in a server?
    thanks,
    mike

    go to start button,all programs,assosories, System tools T event viewer. now select application & rt click & clear & do not save.similarly do for sytem too.

  • How to see events in /var/cluster/logs/eventlog file?

    Hello,
    I want to see events in /var/cluster/logs/eventlog file.
    I read about showev4 but I have two problems:
    * this executable is only for SPARC system and we have x86 systems
    * I transfer the file to a SPARC system to try to analyse but I get a core.
    Best regards,
    Emilio J.

    Transferring a SPARC binary to an x64 system will not work. They are completely different chip architectures. I think the eventlog file is for support staff only. It is not documented in the SC manuals as far as I can tell.
    Tim
    ---

  • Firefox opens links from file:///var/tmp/

    Using kdemod with Firefox set as default browser, when I click a link in Kmail, an IRC client, or Kerry Firefox doesn't go out onto the internet it opens the link from the address file:///var/tmp/*. At some point the computer is retrieving text from the internet and creating the tmp file, but I get a really ugly page with no images at all and a really poor layout.
    This only affects my login. I've compared the entries in the Control Center --> KDE Components --> File Associations for html between logins and everything seems to be setup the same. Any ideas what could be going wrong?

    what about kcontrol > kde components > components chooser > web browser?  Is that set to your preferred browser?
    *edit*
    After re-reading your post I am not sure if the above has anything to do w/ it.
    Last edited by somairotevoli (2007-08-29 23:58:43)

  • Sun logs: /var/adm/messages vs. /var/svc/log/*

    On Solaris 10, is /var/adm/messages still the "gold standard" for startup and shutdown log messages, or have the critical logs moved to /var/svc/log/$service_name?
    It's not like I can't look in one or the other, but I'm trying to gauge the relative importance of the two.
    Is there another location that I'm overlooking?

    aaron.m wrote:
    On Solaris 10, is /var/adm/messages still the "gold standard" for startup and shutdown log messages, or have the critical logs moved to /var/svc/log/$service_name?Depends on what you mean by "startup" messages. There are two types I can think of.
    During boot the kernel might generate a few messages about drivers and buffers and stuff. This is stored in a kernel buffer that is visible when you type 'dmesg'. When syslog starts up, it dumps the contents into the messages file so you have a static copy. I don't think this behavior changes between Solaris 9 and Solaris 10.
    For the actual startup "scripts" (SMF, /etc/init.d, /etc/rc?), Solaris 9 and earlier didn't have any sort of capture location. It was common for scripts to print to STDOUT/STDERR, and that would be delivered to the console only. Since many of the scripts are running before filesystems are mounted read/write, it didn't try to save the output.
    Now with SMF, it does more work to capture that output and you can find that in the service log files that you mention.
    So none of the logs have really moved, but you now have more logs than you did before.
    Darren

  • /private/var/tmp has gone missing!  ***?!?!?!?

    Please, I need help on this one. I had an iBook G4 crash on me, then get as far as the white Apple screen with pinwheel before freezing. I tried running Disk Utility off of an OS X install disk, and it found no volume structure errors. However, when I tried repairing permissions on it, Disk Utility was reporting that the directory /private/var/tmp has gone missing, and it could not repair permissions.
    What gives? How can the whole directory get fried? How can I replace it? I've already tried doing an archive and install, but the OS X installed won't let me do an archive and install, probably because this folder is missing.
    Can anyone help?

    Get Prosoft Data Rescue to recover the data to an external hard disk. Shut down the computer, disconnect the drive any other third party peripherals and then next after that do an erase and install of the operating system. You will probably want to use a CD burner to burn off less frequently used data on occasion at least a couple times so that your hard drive does not fill up with unessential stuff. Some more tips on backing up are on this page:
    http://www.macmaps.com/backup.html
    Disclaimer: Reference to links I make to my Macmaps.com website are a for your information only type reference. I do not get any profit from this page, and it is open to the public.

  • Aurbuild saying "package not found under /var/tmp/aurbuild/pkgbuilds"

    Hello everyone
    I am using aurbuild for installing aur packages. Since some time now, I keep getting the error message:
    package not found under /var/tmp/aurbuild/pkgbuilds
    For example the exact message is:
    lib32-pciutils not found under /var/tmp/aurbuild/pkgbuilds
    No result found
    What can I do about that?
    Thanks in advance
    b1

    Please see our Forum Etiquette regarding bumping b1: https://wiki.archlinux.org/index.php/Fo … te#Bumping
    Have you tried if the same thing happens with other packages and AUR-builders?

  • Is it safe to delete .appmergegen files in /var/tmp anytime?

    Hi,
    I saw when I start an weblogic server, it writes deployment files in /var/tmp in exploded format.
    Do anybody has any idea on these files? and why weblogic writes these in /var/tmp?
    And can these be deleted anytime without restarting weblogic?
    e.g. here are some of the files generated today:
    (each of the directory contains deployment files in exploded format)
    drwxr-xr-x 5 ecmspbea ecmspbea 512 Sep 14 07:29 .appmergegen_1222796450487_da.war
    drwxr-xr-x 9 ecmspbea ecmspbea 512 Sep 14 07:42 .appmergegen_1252939053427_da.war
    drwxr-xr-x 3 ecmspbea ecmspbea 512 Sep 14 07:42 .appmergegen_1252939053427
    For background:
    This is weblogic 10.0 on a Solaris 9 box.

    Thanks for your answer.
    But I am curious to know if these are not required at all after deployment is successfull, why weblogic does not delete these? It is going to be an overhead to the administrators to periodically delete these files from /ver/tmp or to write scripts ... whatever ...
    I'll delete all such files from /var/tmp. but needed a confirmation that weblogic server not at all access these during runtime (means we do not need to restart weblogic servers after deleting all these) ...
    Appriciate your help.

  • WLSE how to clear or erase the log files

    Is it possible to clear or erase the log files - ? Without erasing the config ?
    thx

    No, the log files are automatically rotated periodically so that they don't fill up the disk space

  • /private/var/tmp running full with cache

    We're importing a lot of JPEG and Photoshop pictures and in a big job the folder /var/tmp (locally on the FCServer, who is also the only Compressor) is running full with cache files.
    A lot of these:
    -rw------- 1 admin wheel 212310770 9 jun 09:38 fcsvrxmp_imgio_cachetuAko5
    -rw------- 1 admin wheel 206195341 9 jun 09:38 fcsvrxmp_imgio_cachevjmnyL
    -rw------- 1 admin wheel 202760422 9 jun 09:38 fcsvrxmp_imgio_cacheh66AYm
    -rw------- 1 admin wheel 200220075 9 jun 09:38 fcsvrxmp_imgio_cacheBEuj54
    -rw------- 1 admin wheel 14354020 9 jun 09:38 fcsvrxmp_imgio_cacheoEhooq
    -rw------- 1 admin wheel 268042240 9 jun 09:36 fcsvrxmp_imgio_cacheBLu5fu
    -rw------- 1 admin wheel 104792064 9 jun 09:36 fcsvrxmp_imgio_cachecQeFLO
    -rw------- 1 admin wheel 106102784 9 jun 09:36 fcsvrxmp_imgio_cachehU9Dje
    -rw------- 1 admin wheel 268435456 9 jun 09:36 fcsvrxmp_imgio_cachem77wYW
    -rw------- 1 admin wheel 106037248 9 jun 09:36 fcsvrxmp_imgio_cachenXrHzK
    -rw------- 1 admin wheel 89784320 9 jun 09:36 fcsvrxmp_imgio_cacheggr04X
    -rw------- 1 admin wheel 80150528 9 jun 09:36 fcsvrxmp_imgio_cacheilEkN0
    -rw------- 1 admin wheel 224499080 9 jun 09:36 fcsvrxmp_imgio_cachexpzbwB
    -rw------- 1 admin wheel 210338595 9 jun 09:36 fcsvrxmp_imgio_cacheaBpQJj
    -rw------- 1 admin wheel 208639941 9 jun 09:36 fcsvrxmp_imgio_cacheKVluet
    -rw------- 1 admin wheel 268435456 9 jun 09:34 fcsvrxmp_imgio_cacheIvAtRi
    -rw------- 1 admin wheel 260833280 9 jun 09:34 fcsvrxmp_imgio_cacheM2NNbU
    -rw------- 1 admin wheel 261554176 9 jun 09:34 fcsvrxmp_imgio_cacheRb4Zey
    -rw------- 1 admin wheel 161349632 9 jun 09:34 fcsvrxmp_imgio_cachenc145z
    -rw------- 1 admin wheel 217251840 9 jun 09:34 fcsvrxmp_imgio_cache8HN8Ne
    -rw------- 1 admin wheel 157089792 9 jun 09:34 fcsvrxmp_imgio_cache8gAH9B
    -rw------- 1 admin wheel 23509689 9 jun 09:34 fcsvrxmp_imgio_cacheRyJCi5
    -rw------- 1 admin wheel 213979433 9 jun 09:33 fcsvrxmp_imgio_cacheDaB5ox
    -rw------- 1 admin wheel 22190308 9 jun 09:33 fcsvrxmp_imgio_cache3Fbjf7
    As you can see, big files.. So big that the last 2 days my server startup HD filled almost full (1 GB left).
    So it looks like FCServer is not cleaning up after his self. Can I do something about this? At least change the max caches size?
    Thanks

    Hi,
    It was a corrupted PSD, one file corrupt all the other ones after that one also failed.... we removed the corrupt one and 'Analyze' all the other ones.
    Problem solved??

Maybe you are looking for