• We value your experience with Plesk during 2025
    Plesk strives to perform even better in 2026. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2025.
    Please take this short survey:

    https://survey.webpros.com/

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