• 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
  • Please beaware of a breaking change in the REST API on the next Plesk release (18.0.62).
    Starting from Plesk Obsidian 18.0.62, requests to REST API containing the Content-Type header with a media-type directive other than “application/json” will result in the HTTP “415 Unsupported Media Type” client error response code. Read more here

Input Problems after the last update

UHolthausen

Regular Pleskian
Hello everybody

since the last update to version 18.0.27 the protocol of sw-cp-ser is running full:

cannot bind adress already in use. See attachment.

Repair kit does not result in errors!

What's wrong?
 

Attachments

  • sw-cp-server log.pdf
    5.4 KB · Views: 3
I suspect you have a dead process from sw-cp-server still on the port, if not then something else is using them.

Over SSH you can check it with:
Code:
# netstat -tulpen | grep :8443

This should give you an output like this:
Code:
# netstat -tulpen | grep :8443
tcp        0      0 0.0.0.0:8443            0.0.0.0:*               LISTEN      0          2482254    7905/sw-cp-server:
tcp6       0      0 :::8443                 :::*                    LISTEN      0          2482256    7905/sw-cp-server:

In my example the process is the 7905 and this one needs to be killed:
Code:
# kill -9 7905

Then try restarting sw-cp-server:
Code:
# service sw-cp-server restart

 
Back
Top