pull down to refresh

good news: I managed to updage ubuntu, 22.04 now but then when I run

curl -sS https://installer.cloudpanel.io/ce/v2/install.sh -o install.sh;
echo "a3ba69a8102345127b4ae0e28cfe89daca675cbc63cd39225133cdd2fa02ad36 install.sh" |
sha256sum -c && sudo bash install.sh

it shows ERROR: Your system already has services running on port 80, 443 or 3306.

what should I do

That's a great news, well done 💪

For the error, have you rebooted the server?
sudo reboot

Then try one line at time:
curl -sS https://installer.cloudpanel.io/ce/v2/install.sh -o install.sh to download the installer first. See if the error persists, or if it gives different output and depending on what it gives, keep going with

echo "a3ba69a8102345127b4ae0e28cfe89daca675cbc63cd39225133cdd2fa02ad36" install.sh | sha256sum -c

to install it, and then

sudo bash install.sh

to verify the installation

reply
sudo reboot
I did reboot it

just tired again ( one line at time ) and it's showing the same output: ERROR: Your system already has services running on port 80, 443 or 3306.

reply

ok let's stop the services:

sudo systemctl stop apache2 OR sudo systemctl stop nginx if you are using nginx, and
sudo systemctl stop mysql

if the services restart automatically, just disable both using

sudo systemctl disable apache2 (assuming is an apache server) and
sudo systemctl disable mysql

then try again

reply

deleted by author

reply

are you on apache or nginx? can you share the specs of your server on cotabo? I should have ask earlier...

In the meantime, let's repair partially installed packages
sudo dpkg --configure -a

Fix broken dependencies
sudo apt-get install -f

Clean cached packages (optional)
sudo apt-get clean

Retry installing mysql-server (maybe not needed)
sudo apt-get install --reinstall mysql-server-8.0

reply
are you on apache or nginx? can you share the specs of your server on cotabo? I should have ask earlier...

idk, how could I look it up 👀

reply

you are not if the error before was:
Failed to disable unit: Unit file apache2.service does not exist.

What's the contabo service you got?

reply

deleted by author

deleted by author

reply

is mysql still running?

sudo systemctl stop mysql
sudo apt-get purge mysql-server-8.0 mysql-client mysql-common mysql-server-core-8.0
sudo rm -rf /etc/mysql /var/lib/mysql /var/log/mysql
sudo apt-get autoremove
sudo apt-get autoclean

Then let's try to reinstall MySQL
sudo apt-get update
sudo apt-get install mysql-server-8.0

Hopefully ithis succeeds! Verify with:
sudo systemctl status mysql

reply
0 sats \ 1 reply \ @mo 23 Mar

deleted by author

reply
reply