• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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