Cyber panel installation error

We tried it on ubuntu 20.04 but it gives the same error.
ubuntu

Seems you are not installing the stable branch. WHich branch is this?

i’m doing a standard install i didn’t choose a version

wget -O installer.sh https://cyberpanel.net/install.sh

chmod 755 installer.sh sh installer.sh

Did you choose a specific version when you were prompted?

No, I installed it as in the screenshot.
Screenshot_2

If the installation failed reinstall your os or recover from a previous snapshot and run

sh <(curl https://raw.githubusercontent.com/usmannasir/cyberpanel/stable/install.sh || wget -O - https://raw.githubusercontent.com/usmannasir/cyberpanel/stable/install.sh)

This should definitely work since there has been no update since sep 10th

looks like an issue with the litespeed repo

is this Ubuntu 20.04 or?

yes ubuntu 20.04

Are you sure this is a clean os? Does your provider have something preinstalled? becuase if you swicthed from centos to ubuntu and have same issue it seems you have an issue.

If you dont mind can you try my fork and see if you get same error

sh <(curl https://raw.githubusercontent.com/josephgodwinkimani/cyberpanel/main/install.sh || wget -O - https://raw.githubusercontent.com/josephgodwinkimani/cyberpanel/main/install.sh)

unfortunately i still get the same error

Try this wget -cv http://rpms.litespeedtech.com/debian/enable_lst_debain_repo.sh

Post screenshot

image

There is the issue
Run sudo nano /etc/resolv.conf and post screenshot

Run in ssh terminal

# assuming you are sudo user or root
$ tee /etc/resolv.conf<<"EOF"
nameserver 8.8.8.8
nameserver 8.8.4.4
EOF

$ systemctl restart systemd-resolved.service
# then try again
$ wget -cv http://rpms.litespeedtech.com/debian/enable_lst_debain_repo.sh

post screenshot after the last command

:frowning:

Service restart didnt work so no changes were reflected for you to see it work.

# unmask service
$ sudo systemctl unmask systemd-resolved
$ systemctl restart systemd-resolved.service
# then try again
$ wget -cv http://rpms.litespeedtech.com/debian/enable_lst_debain_repo.sh

Fix file permissions

$ chown root:root /etc/resolv.conf
$ chmod 644 /etc/resolv.conf

$ systemctl restart systemd-resolved.service
# then try again
$ wget -cv http://rpms.litespeedtech.com/debian/enable_lst_debain_repo.sh