• Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
    Thank you in advance for your patience and understanding on the matter.

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