• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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