• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • 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.

Update to Plesk 8.1.1 - BIG PROBLEM!

flosoft

Basic Pleskian
Hey,

I have just updated to the new Plesk Version, atleast I wanted to. Here is my error:

Unpacking replacement psa ...
dpkg: error processing /var/cache/apt/archives/psa_8.1.1-debian3.1.build81070322.16_i386.deb (--unpack):
trying to overwrite `/usr/share/man/man1/monit.1.gz', which is also in package monit
dpkg-deb: subprocess paste killed by signal (Broken pipe)
Errors were encountered while processing:
/var/cache/apt/archives/psa_8.1.1-debian3.1.build81070322.16_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
catch error with message: Install command execution failed
Errors just before:
- Can't execute package installation command

ERROR: Install command execution failed
Errors just before:
- Can't execute package installation command

Check SElinux status after error:
Exit with ERROR status

Please help :)
 
Count yourselves luck :eek:

Ive just updated, to what I thought was a successful update..

Until I tried to visit my websites, I am now unable to access any website on my server, I have rebooted, restarted services etc etc.

I get this message in my logs

Mar 28 18:39:21 p15195660 httpd: (98)Address already in use: make_sock: could not bind to address 0.0.0.0:443
Mar 28 18:39:21 p15195660 httpd: no listening sockets available, shutting down

But after hours of searching, nothing else is using the processes


PLEASE HELP !!!!!!!!! :confused:
 
Originally posted by sws-solutions
Count yourselves luck :eek:

Ive just updated, to what I thought was a successful update..

Until I tried to visit my websites, I am now unable to access any website on my server, I have rebooted, restarted services etc etc.

I get this message in my logs

Mar 28 18:39:21 p15195660 httpd: (98)Address already in use: make_sock: could not bind to address 0.0.0.0:443
Mar 28 18:39:21 p15195660 httpd: no listening sockets available, shutting down

But after hours of searching, nothing else is using the processes


PLEASE HELP !!!!!!!!! :confused:
Try these commands as root:
killall -9 httpd
/etc/init.d/httpd restart

If that doesn't work, reboot the server.
 
1. run sockstat | grep 443
You will see same table
Code:
psaadm   httpsd     72227 17 tcp4   *:8443                *:*
psaadm   httpsd     67918 17 tcp4   *:8443                *:*
root     httpsd     67915 17 tcp4   *:8443                *:*
root     http     67987 17 tcp4   *:443                *:*
As you see 4 line has already bind port and you need to kill this apache process or another program.

kill -TERM 67987
or
kill -9 67987

and repeat to check sockstat | grep 443

after all:
reboot apache apachectl restart

Sorry for my bad English.
 
Back
Top