Skip to main content

“Why Is /tmp Filling Up Daily After Enabling PHP EXIF? How to Check Files via SSH”

Comments

2 comments

  • cPRex Jurassic Moderator

    Hey there!  If this is the main /tmp of the server you would need root SSH access to see the specific files, which would likely help determine their cause.

    The best information on using SSH to track down disk usage can be found here:

    https://support.cpanel.net/hc/en-us/articles/360047890393-How-to-determine-server-disk-space-usage

    so I'd recommend trying that to see if you can get more information on what is happening.

    0
  • Siddesh Prajapati

    I think the issue is happening because enabling PHP EXIF is generating temporary files (like image metadata processing) that are being stored in /tmp and not getting cleaned up properly. Over time, this causes /tmp to fill up daily. You can check what’s filling the space via SSH using commands like du -sh /tmp/* or ls -lh /tmp to identify large or leftover files.

    0

Please sign in to leave a comment.