• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • 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.

Resolved After updating plesk panel from 12 to 17 -> Starting sw_cp_server service... failed

Giovanni

New Pleskian
Hi folks,
I am running plesk panel on my vps. I just decided to update from 12 to 17 from the panel itself.
After the update I am no longer able to load the page of the panel in the browser.

When I try to restart plesk from command i get this:

[root@xxxxxxx ~]# /etc/init.d/psa start

Starting sw_engine service... done

Starting sw_cp_server service... failed

Starting mysql service... already started

Starting named service... already started

Starting mailer service... done

Starting spamfilter service... already started

Starting drweb service... done

Starting tomcat service... not installed

Starting apache service... already started

Starting xinetd service... already started

Then, if i try to restart only sw_cp_server service I get this:

[root@xxxxxxxx ~]# /etc/init.d/sw-cp-server restart

nginx: [emerg] "ssl_ciphers" directive is duplicate in /etc/sw-cp-server/conf.d/ssl.conf:1

nginx: configuration file /etc/sw-cp-server/config test failed

Do you have any suggestions to how fix this?

Thanks and regards.
 
Check the content of /etc/sw-cp-server/conf.d/ssl.conf . Does it contain the ssl_ciphers directive more than a single time? Then remove the additional line. If it only contains the directive once, the same directive is listed in another nginx configuration file. This can be anywhere. In that case you could try
# grep -R "ssl_ciphers" /etc/sw-cp-server/conf.d/*
to check other files in the same directory whether they contain that directive, too. For Nginx each directive must only exist once.
 
I also found this to resolve the problem

# service sw-cp-server restart
sw-cp-serverd: nginx: [emerg] "ssl_ciphers" directive is duplicate in /etc/sw-cp-server/conf.d/ssl.conf:1
sw-cp-serverd: nginx: configuration file /etc/sw-cp-server/config test failed
Cause
This is a software issue with internal # PPPM-3228 .

Resolution
Remove /etc/sw-cp-server/conf.d/ssl.conf file and restart sw-cp-server service:

# rm -f /etc/sw-cp-server/conf.d/ssl.conf
# service sw-cp-server restart
 
Back
Top