Quote:
Originally Posted by Nutz This was is 4.5.10, now I'm running 5.0.2.
My question is: Can I safely empty it out?
Thank you,
Nutz |
Nutz,
What you are seeing appears to be bug 19679 (
Bug 19679 - /tmp fills up after numerous convertd crashes). This bug was resolved in ZCS 5.0.
You can move the older kv files to a path with more space:
zmconvertctl stop
find /tmp/ -name 'kv*' -mtime 1 -exec mv {} /somewhere/else/ \;
zmconvertctl start
This will move the kv files older than one day.