No space under /var/tmp

Hi all,
I'm having difficulties in one of our Solaris 10 boxes. When I try to edit a file using vi editor it gives me a message saying no disk space in the /var/tmp. but it seems like sufficient disk space available since /var/tmp is mounted to root partition. see the output
5stac5(5.10):/var/tmp>df -k .
Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/dsk/c0t0d0s0     10331209   6897631   3330266  68% /Please help me with this
Thanks,

Not specific. Even for a new file this error was given. However i've noted that large number of files created under /var/spool/clientmqueue. Is that can be a problem?

Similar Messages

  • 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?

  • Contents of /var/tmp

    Hi I have my 11.5.10.2 E-Biz $APPLPTMP set to /usr/tmp - which in turn is actually symbolically linkled to /var/tmp
    My system is a Solaris 10 platform.
    I have noticed a lot of files in this directory that I do not normally see on other non solaris platforms. These files almost look like files based on net work protocols and they are owned by my applications applmgr user eg
    /var/tmp/BEQ<xxx>
    /var/tmp/DEC<xxx>
    /var/tmp/ISPX<xxx>
    /var/tmp/ITCP<xxx>
    /var/tmp/LU<xxx>
    /var/tmp/net<xxx>
    /var/tmp/NMP<xxx>
    /var/tmp/RAW<xxx>
    /var/tmp/SPX<xxx>
    /var/tmp/TCP<xxx>
    /var/tmp/US<xxx>
    These files are quite old ( several years ), so I am not sure if they are being created at the time of my E-Biz install ?
    Any idea what these files are ?
    Jim

    These files are quite old ( several years ), so I am not sure if they are being created at the time of my E-Biz install ?What is the timestamp of those files?
    Any idea what these files are ?Temporary Files Types .t, .temp and .tmp are Saving Under /var/tmp [ID 145487.1]
    WRR Generates OFA*.t Temp File in /var/tmp Directory Instead of $APPLTMP [ID 276695.1]
    Most Common Solutions to FRM-41839 and .tmp Files Not Being Deleted [ID 435437.1]
    Why Does Oracle Forms Create .TMP Files Which Fill Up The Filesystem e.g. /tmp ? [ID 162232.1]
    Thanks,
    Hussein

  • 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)

  • Sandbox deny file-read-metadata /private/var/tmp

    Hi,
    I have Berkeley DB 5.2.28.
    And I tried to use Berkeley DB on iOS 4.3.
    I wrote;
    printf (stderr, "db open - 1");
    ret = dbenv.open(strDBdir,
    DB_CREATE |
    DB_INIT_LOCK |
    DB_INIT_LOG |
    DB_INIT_MPOOL |
    DB_INIT_TXN |
    DB_THREAD |
    DB_RECOVER,
    S_IRUSR | S_IWUSR);
    printf (stderr, "db open - 2");
    I runned this app on iPod 4 (iOS 4.3), and then in xCode's Organizer found a message: "sandbox[363] <Notice>: myapp(362) deny file-read-metadata /private/var/tmp", between "db open - 1" and "db open - 2".
    How to resolve it?
    Please, help me.
    Thank you.

    Hi,
    I assume you have correctly followed and built BDB 5.2.28 for Apple iOS by following the guide for Building Berkeley DB for UNIX/POSIX and the notes specific to Apple iOS (iPhone OS).
    The error message you reported:
    sandbox[363] <Notice>: myapp(362) deny file-read-metadata /private/var/tmpis not an error from the BDB layer, but rather from the OS layer. It could point to insufficient privileges or rights (to write in that /private/var/tmp directory) or maybe a profile / access control list that is not configured correctly to allow the user you're running under to read metadata and data for a file; for example, make sure you have something like this in your sandbox profile:
    (allow file-write* file-read-data file-read-metadata
      (regex "^/path_to_BDB_environment__strDBdir")
      (regex "^(/private)?/var/tmp/")
      (regex "^(/private)?/tmp/"))If this does not help then I suggest you post on the Apple discussion forums.
    Regards,
    Andrei

  • How to delete black space under my page..

    though the pages seem to be same size, in some of them i've got some black space under them and i cant take it away with the layout buttons
    what can I do?
    thanks

    What's the URL for the site so we can examine it first hand?
    OT

  • /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.

  • Space under flash movies

    Hi All,
    I am having an annoying problem:  when I use swfobject code to embed flash movies, it leaves a space under the movie that breaks the design.  This happens when viewing it in Chrome or Firefox (on a mac), but not in Safari.  I have found that when I just paste in the <object> code alone
    created when I publish the movie out of flash into my HTML document, the space disappears.  I have tried removing all line breaks and extra spaces
    from the swfobject code to no avail.  This also happens when I add the movie in using Dreamweaver CS4 (insert->media->swf) , which uses
    swfobject.
    Here is an affected page, note the space under both the header flash movie, and the main movie under the nav: http://hamptonsdesignstudio.com/index2.html
    Here is the page with just the object code and the desired design: http://hamptonsdesignstudio.com/index.html
    I would like to be able to use swfobject to provide alternate content for
    search engines, but not at the expense of breaking my design. Any
    suggestions ?
    Thanks,
    Colin

    Glad you figured it out.
    It would be good if you could mark this thread as Answered so the folks who help will not need to keep clicking on it.  thanks.
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • 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)

  • White space under table on page how to get rid of it

    I created a new page, inserted a table to fill the page and
    put in a background color. When I look at the page in Dreamweaver,
    there is no white space under the table at the bottom of the page.
    When I preview the page in a browser, the table ends about an inch
    from the bottom of the page and I have about an inch of white space
    under the table. Does anyone have an idea why this is happening?
    Thanks for any help you can give. I'm going crazy trying to
    get rid of it.
    Diane

    Fix up the errors with your html firstly - then see where you
    are at with
    the page....
    The first thing to do would be to get rid of the table
    heights - it's
    invalid and won't render cross browser anyway. Error:
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fhome.comcast.net%2F~moordian%2F
    PS: Are you working on a PC or a Mac?
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://www.DreamweaverResources.com
    |Tutorials|SEO |CSS Templates
    http://www.csstemplates.com.au
    http://www.adobe.com/devnet/dreamweaver/css.html
    CSS Tutorials for Dreamweaver
    "diane7" <[email protected]> wrote in
    message
    news:efa1h5$o12$[email protected]..
    > When I am working on the page in Dreamweaver, I can't
    add content any
    > lower
    > than the gold bar at the bottom. In fact, none of the
    white under the
    > gold bar
    > shows up in Dreamweaver, when I'm working on the page.
    It only shows up
    > when I
    > preview it or publish it. That's why I'm so baffled. The
    gold bar should
    > be
    > the bottom of my index page but that white shows up in
    the published
    > version
    > underneath it. My page properties are set to 0 margins
    on all four sides
    > of
    > the page and the table is set to 0 padding and 0 cell
    spacing, so I don't
    > think
    > that's it.
    > Diane
    >

  • /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.

  • 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.

  • 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.

  • Removing space under a line chart

    How do I remove the space under a line chart? Its as if space is held for axis labels on the bottom of the chart, even though I do not have any. I ve already set Additional Formatting Options - Bottom Padding and Height. Thanks

    Hi Sophia,
    Id you could send me the screen shot of the chart that would give me better understanding to resolve your issue.

  • 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.

Maybe you are looking for