• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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