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

Resolved Plesk not accessible after upgrade / install new component

SylvioB

New Pleskian
Hello
first of all the workaround I found is : https://kb.plesk.com/en/126774
But... I have to do it after every try of "plesk repair installation" that return an error about sw-cp-server
So I except this is a bug in my situation.

---------------------------------------------------------------
PRODUCT, VERSION, OPERATING SYSTEM, ARCHITECTURE
Plesk, 12 upgraded to Onyx 17.0.17 Update #8, Centos 6.8, VPS hosted by OVH

PROBLEM DESCRIPTION
Plesk web interface not more accessible

STEPS TO REPRODUCE
I get a preinstalled by OVH VPS with Plesk 12.
I upgrade it to Onyx 17.0.17.

ACTUAL RESULT
Plesk interface is not more accessible

EXPECTED RESULT
Plesk continues to work

ANY ADDITIONAL INFORMATION
initially I tried "plesk repair installation"
but finally I found that this recreate the file
/etc/sw-cp-server/conf.d/ssl.conf
every time
So I actually work around the problem by the KB #126774 :
# rm -f /etc/sw-cp-server/conf.d/ssl.conf
# service sw-cp-server restart

--------------------------------------------------------------
 
Hi SylvioB,

what is the output of the command:
Code:
find /etc/sw-cp-server -type f -name "*.*" -exec grep --color -Hni "ssl_ciphers"  {} \;

AFTER the Plesk repair - process, pls.?
 
Hello :
[root@smart ~]# find /etc/sw-cp-server -type f -name "*.*" -exec grep --color -Hni "ssl_ciphers" {} \;
/etc/sw-cp-server/conf.d/ssl.conf:1:ssl_ciphers HIGH:!aNULL:!MD5;
/etc/sw-cp-server/conf.d/pci-compliance.conf:1:ssl_ciphers ADH-AES256-SHA:DHE-RSA-AES256-SHA:DHE-DSS-AES256-SHA:AES256-SHA:KRB5-DES-CBC3-MD5:KRB5 -DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:EDH-DSS-DES-CBC3-SHA:DES-CBC3-SHA:ADH-DES-CBC3-SHA:DES-CBC3-MD5;

Note : actually this server is not in production, so if you want to get a quick access it's possible
 
Hi SylvioB,

pls. consider to use:

Code:
mv /etc/sw-cp-server/conf.d/ssl.conf.backup
mv /etc/sw-cp-server/conf.d/pci-compliance.conf.backup
plesk repair installation -y -v

... and see if this already solves your issue. Pls. inspect as well the ( new ) corresponding Plesk - repair - log ( /var/log/plesk ) and post it for further investigations, pls.
 
Hi SylvioB,

pls. consider to use:

Code:
mv /etc/sw-cp-server/conf.d/ssl.conf.backup
mv /etc/sw-cp-server/conf.d/pci-compliance.conf.backup
plesk repair installation -y -v

... and see if this already solves your issue. Pls. inspect as well the ( new ) corresponding Plesk - repair - log ( /var/log/plesk ) and post it for further investigations, pls.

I think one parameter of mv command is missing...
 
both ;-)
I except you wanted to write :
Code:
mv /etc/sw-cp-server/conf.d/ssl.conf /etc/sw-cp-server/conf.d/ssl.conf.backup
mv /etc/sw-cp-server/conf.d/pci-compliance.conf /etc/sw-cp-server/conf.d/pci-compliance.conf.backup

Anyway it seems to be working well now doing this before the repair command.
 
Back
Top