Page 1 of 1

CentOS 8 Error

Posted: Sat Oct 19, 2019 2:45 am
by nickisghosty
Unable to install on CentOS 8 the error is

Code: Select all

Vesta - cmmnt                                   1.1 kB/s | 1.4 kB     00:01
Error: Failed to synchronize cache for repo 'vesta'
Error: Unknown repo: '*base'
Error: yum install failed
I can get past this if i edit the vesta repo baseURL to http://$RHOST/$REPO/7/\$basearch/" and delete the *base and *update from

Code: Select all

if [ $? -ne 0 ]; then
    if [ "$remi" = 'yes' ]; then
        yum -y --disablerepo=* \
            --enablerepo="*base,*updates,nginx,epel,vesta,remi*" \
            install $software
    else
        yum -y --disablerepo=* --enablerepo="*base,*updates,nginx,epel,vesta" \
            install $software
    fi
fi
to make it

Code: Select all

if [ $? -ne 0 ]; then
    if [ "$remi" = 'yes' ]; then
        yum -y --disablerepo=* \
            --enablerepo="nginx,epel,vesta,remi*" \
            install $software
    else
        yum -y --disablerepo=* --enablerepo="nginx,epel,vesta" \
            install $software
    fi
fi
but then its unable to find any of the packages to install such as httpd, nginx, php, etc.... is CentOS 8 not supported yet or is there a workaround I can do?

Re: CentOS 8 Error

Posted: Sun Oct 20, 2019 7:17 pm
by SanTi
There is problem with installing of VestaCP on Centos 8. How to solve this problem?

Re: CentOS 8 Error

Posted: Mon Oct 21, 2019 10:24 pm
by nickisghosty
I was able to fix not being able to install vesta cp on centos 8 by using centos 8 stream instead.

Re: CentOS 8 Error

Posted: Wed Oct 23, 2019 10:54 am
by skurudo
nickisghosty wrote:
Mon Oct 21, 2019 10:24 pm
I was able to fix not being able to install vesta cp on centos 8 by using centos 8 stream instead.
Nope, not supported yet. If you can share solution for users, you're welcome