pull down to refresh
0 sats \ 48 replies \ @Natalia OP 21 Mar \ parent \ on: Renew SSL for Domains Tutorials Needed tutorials
deleted by author
Are you following this docs? https://www.cloudpanel.io/docs/v2/getting-started/other/
You are at good stage, you basically need a MySQL database, does your hosting provider has it installed? How do you manage the database for your existing sites?
reply
Are you following this docs? https://www.cloudpanel.io/docs/v2/getting-started/other/
yes
How do you manage the database for your existing sites?
I think it should be MySQL, but isn't the problem now is the Ubuntu incompatible which means I should update it first?
reply
CloudPanel offer two version for v24 and v22, which version your server is running?
try
lsb_release -a
otherwise try to force the script install with:
curl -sS https://installer.cloudpanel.io/ce/latest.sh | bash -s -- --force
Just to prepare to next steps... Are you using MySQL in your existing sites?
BTW: these are 3 separated commands... not sure you can run them all together
reply
20.04
reply
Then try to upgrade to the latest version:
-
Make a backup of the current state of the server... just in case!
-
Update Current Packages
bash
sudo apt update && sudo apt upgrade -y
sudo apt dist-upgrade -y
# Handle dependency changessudo apt autoremove --purge
# Remove obsolete packages -
Reboot (if needed) If the kernel was updated:
bash
sudo reboot
-
Install Upgrade Tool Ensure update-manager-core is installed:
bash
sudo apt install update-manager-core -y
-
Start the Upgrade For LTS-to-LTS upgrade (e.g., 20.04 → 22.04):
bash
sudo do-release-upgrade
-
Follow On-Screen Prompts ... and onfirm actions when asked (like, removing old packages)
-
Complete the Upgrade After packages are installed, is good to restart the server:
bash
sudo reboot -
Post-Upgrade Checks Verify OS version:
bash
lsb_release -a# Check Ubuntu version
uname -a` # Check kernel version -
Update packages again (post-reboot):
bash
sudo apt update && sudo apt upgrade -y
reply
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
wow, thanks, let me try again tmr! and crazy why such simple thing can be so complicated, more complicated than a Bitcoin node 😂
deleted by author
deleted by author