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

503 ERROR for just few users

lucaDF

New Pleskian
Hi everyone,

we're facing a really bad problem with our dedicated server wiht Plesk11 (updated to the last version) + php fastgi installed.

Many of our users see quite often a 503 Error message and can't see many images, that are phisically present on the server and that are visible my the other users.

Deactivating nginx with the command:
/usr/local/psa/admin/bin/nginxmng --disable


those users don't see anymore the 503 and they can also see the images. BUT, deactivating nginx the secure version gives an error to the users. It seems that Apache can't see the certificate ( regularly bought and installed through plesk)

Reactivating nginx https starts to work again but the 503 problem comes back again.

Please help us understand how to solve the 503 problem affecting only few users, or at least how to deactivate nginx without the invalid certificate issue

Thanks
 
Hi,

The 503 error ought to result in something being logged to the nginx error logs (look for something mentioning "upstream" which means apache).

With regard to the other issue, does this fix it :

Code:
/usr/local/psa/admin/bin/nginxmng --disable 
/usr/local/psa/admin/bin/httpdmng --reconfigure-all

If not, any chance you could drop back to Apache and point me to the URL?

Paul.
 
Thanks for your help!

Before reading your reply we tried another procedure, that is working at the moment... anyway we are worried that some automatical plesk update or even a simple operation like the creation of a new domain, could bring the situation back to start. This is the list of our actions to make apache be able to see the certificate:

1) We disabled nginx as described in the first post.
2) Overwritten the file /etc/pki/tls/certs/localhost.crt with the correct certificate
3) Overwritten the file file /etc/pki/tls/private/localhost.key with the correct private key
4) Created the file /etc/pki/tls/certs/ca-bundle.crt with the CA certificate
4) Enabled the directive "SSLCACertificateFile /etc/pki/tls/certs/ca-bundle.crt" in the file /etc/httpd/conf.d/ssl.conf

In this way it all seems to work for now. But we want to understand as soon as possible what's the bug affecting this version of plesk, because otherwise we could find ourselves, at any moment, back to the first situation. We want to find a definitive solution. Could you help us?

Thanks
 
You could lock those files from being updated by any of the processes to avoid going back to square 1 by:

chattr +i <configuration file>

and Unlock by

chattr -i <configuration file>

while you dig or wait for a permanent solution!
 
Back
Top