• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.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