• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Issue Major Space issue

krystalgrowth

New Pleskian
Hi, Someone please help me . I have almost 2tb of my disk space filled on my Ubuntu service and I don’t know what to delete that won’t damage my system.E335B0CE-D8C0-4092-8FA0-11F6F527AF2E.jpeg
 
Try to identify where the most disk space is used by any of these commands:

Sorted list of disk space usage small to large:
# du -hs * | sort -h

Find files larger 5 MB (5000k, adapt to the size you need):
find ./ -type f -size +5000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'

Both of these commands may run a long while when executed from the root directory, because they will go through all of your disk.

It might be more efficient to start from /var/www/vhosts/ directory and /var/log directory, because most often a lot of space is occupied there.

You might also want to check if there are local backups stored on your system:
Find out where local backups are stored:
# grep DUMP_D /etc/psa/psa.conf
Then run du on that location, e.g. if your local dumps are stored in /home/dumps, run
# du -hs /home/dumps/* | sort -h
Adapt to your factual storage location.
 
9A83A004-E15F-4700-83B8-A5AE05B8A310.jpeg
I found the issue with is plesk74-fpm. I deleted the log but in a few hours it’s already filling up quickly and I don’t know the issue since I am unable to access that folder
 
You need root access the plesk-php74-fpm directory. Use the SU root command the switch to Root user.

Then secondly view the error.log file that's inside the plesk-php74-fpm directory the see thre PHP errors that are logged. Best would be to figure out if you can fix the PHP errors that are mentioned in the log file.
 
Last edited:
Back
Top