• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

No space left on device

grignacarbo

New Pleskian
Hello everyone I have a linux server with centos6 plesk11 64-bit, after you made ​​a backup appeared to me a 503 error preventing me to access my plesk control panel, the log showed this error: "No space left on device". Doing a search I found solutions like the one I highlighted in red at the bottom, but without solving the problem, what is wrong? Can you give me some advice?

semget: No space left on device

To see how many semaphores are being used, SSH to your server as root and run the following:

ipcs -s

In order to get Apache started again, we must clear the semaphores. Run this for-loop to flush them:

for whatever in `ipcs -s | awk '{print $2}'`; do ipcrm -s $whatever; done

On older servers that command may not work. In these cases, you may need to do the following:

/sbin/service httpd stop
ipcs -s | grep nobody | gawk '{ print $2 }' | xargs -n 1 ipcrm sem
/sbin/service httpd start

If this is a common problem for you, you may want to increase the semaphore limits on your server. You can do that by adding the following to the /etc/sysctl.conf file:

# Increases the semaphore limits & extend Apache's uptime.
kernel.msgmni = 512
kernel.sem = 250 128000 32 512
 
Can you please show me the following command output

Code:
df -h 

df -i



Code:
grep DUMP_TMP_D /etc/psa/psa.conf
 
hello am not an expert, I have tried to insert in ssh codes that I've reported but nothing has changed, you have other tips?
 
Please update here above command output so that I can check it, Maybe your disk inode is full and due to that you are getting this issues " No space left on device "
 
Back
Top