Vesta Control Panel - Forum

Community Forum

Skip to content

Advanced search
  • Quick links
    • Main site
    • Github repo
    • Google Search
  • FAQ
  • Login
  • Register
  • Board index Main Section General Discussion
  • Search

install error

General questions about VestaCP
Post Reply
  • Print view
Advanced search
23 posts
  • Previous
  • 1
  • 2
  • 3
  • Next
prmx89
Posts: 4
Joined: Tue Sep 15, 2020 3:02 am

Os: CentOS 6x
Web: nginx + php-fpm
Re: install error
  • Quote

Post by prmx89 » Wed Sep 16, 2020 5:50 am

grayfolk wrote: ↑
Tue Sep 15, 2020 3:53 am
prmx89 wrote: ↑
Tue Sep 15, 2020 3:04 am
I have the same issue and I can't install VestaCP.
cris_direkthost wrote: ↑
Mon Sep 14, 2020 4:08 pm
You can try before vestacp install

yum install yum-utils

then

yum-config-manager --disable remi-php8
this one doesn't work
There is a simple instruction:
On fresh server BEFORE Vesta installation:
1. Install Remi repo
2. Install yum-utils
3. Disable all php versions: yum-config-manager --disable remi-php*
4. Enable php version what you want: yum-config-manager --enable remi-php74
Then install Vesta CP.
Worked for me! Thank you so much:) This is my command line order to get installed successfully:

yum -y update
yum -y install php-cli php-zip wget unzip
wget http://rpms.famillecollet.com/enterpris ... ease-7.rpm
yum -y install epel-release
rpm -Uvh remi-release-7.rpm
yum -y install yum-utils
yum-config-manager --disable remi-php*
yum-config-manager --enable remi-php74
curl -O http://vestacp.com/pub/vst-install.sh
bash vst-install.sh

Actually I have small issue with Roundcube. I just can't log in - I made new account and trying to log in but still with no success (error 'Invalid request! No data was saved.') :(
Top

cris_direkthost
Posts: 6
Joined: Sun Sep 13, 2020 7:09 am

Os: CentOS 6x
Web: nginx + php-fpm
Re: install error
  • Quote

Post by cris_direkthost » Wed Sep 16, 2020 6:21 am

thank you grayfolk

is working

yum install epel-release yum-utils
yum install wget
cd /tmp/
wget http://rpms.famillecollet.com/enterpris ... ease-7.rpm
rpm -Uvh remi-release-7.rpm
yum-config-manager --disable remi-php*
yum-config-manager --enable remi-php74

then install vestacp
Top

Zerander
Posts: 18
Joined: Fri May 11, 2018 3:05 pm

Os: CentOS 6x
Web: apache + nginx
Re: install error
  • Quote

Post by Zerander » Wed Sep 16, 2020 8:55 am

That works but then the domain doesn't seem to resolve, I've tried with 4 of my domains and all I wind up with is the IP and each domain won't resolve.
Top

grayfolk
Support team
Posts: 1111
Joined: Tue Jul 30, 2013 10:18 pm
Contact:
Contact grayfolk
Website Facebook Skype Twitter

Os: CentOS 6x
Web: nginx + php-fpm
Re: install error
  • Quote

Post by grayfolk » Wed Sep 16, 2020 9:56 am

Zerander wrote: ↑
Wed Sep 16, 2020 8:55 am
That works but then the domain doesn't seem to resolve, I've tried with 4 of my domains and all I wind up with is the IP and each domain won't resolve.
This is not related to topic issue. Read how to point domains to Vesta CP.
Top

Zerander
Posts: 18
Joined: Fri May 11, 2018 3:05 pm

Os: CentOS 6x
Web: apache + nginx
Re: install error
  • Quote

Post by Zerander » Wed Sep 16, 2020 10:25 am

When I point domains using custom dns and nameservers it used to work fine, but now it doesn't since this bug.
Top

cris_direkthost
Posts: 6
Joined: Sun Sep 13, 2020 7:09 am

Os: CentOS 6x
Web: nginx + php-fpm
Re: install error
  • Quote

Post by cris_direkthost » Sat Sep 19, 2020 12:36 pm

prmx89 wrote: ↑
Wed Sep 16, 2020 5:50 am
grayfolk wrote: ↑
Tue Sep 15, 2020 3:53 am
prmx89 wrote: ↑
Tue Sep 15, 2020 3:04 am
I have the same issue and I can't install VestaCP.



this one doesn't work
There is a simple instruction:
On fresh server BEFORE Vesta installation:
1. Install Remi repo
2. Install yum-utils
3. Disable all php versions: yum-config-manager --disable remi-php*
4. Enable php version what you want: yum-config-manager --enable remi-php74
Then install Vesta CP.
Worked for me! Thank you so much:) This is my command line order to get installed successfully:

yum -y update
yum -y install php-cli php-zip wget unzip
wget http://rpms.famillecollet.com/enterpris ... ease-7.rpm
yum -y install epel-release
rpm -Uvh remi-release-7.rpm
yum -y install yum-utils
yum-config-manager --disable remi-php*
yum-config-manager --enable remi-php74
curl -O http://vestacp.com/pub/vst-install.sh
bash vst-install.sh

Actually I have small issue with Roundcube. I just can't log in - I made new account and trying to log in but still with no success (error 'Invalid request! No data was saved.') :(
I have the same problem with roundcube. Did you find any solution ?
Top

Bez
Posts: 78
Joined: Mon Feb 10, 2014 9:43 pm

Re: install error
  • Quote

Post by Bez » Fri Sep 25, 2020 1:23 pm

Problem

Code: Select all

vestacp php(zend-abi) = 20200804-64 Error: yum install failed
Server

Code: Select all

rpm -q centos-release
centos-release-7-8.2003.0.el7.centos.x86_64
Solved as in previous posts - thank you!

Code: Select all

yum -y update
yum -y install php-cli php-zip wget unzip
wget http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
yum -y install epel-release
rpm -Uvh remi-release-7.rpm
yum -y install yum-utils
yum-config-manager --disable remi-php*
yum-config-manager --enable remi-php74
curl -O http://vestacp.com/pub/vst-install.sh
--- run #Run it from https://vestacp.com/install/ (bash .....)
Top

prmx89
Posts: 4
Joined: Tue Sep 15, 2020 3:02 am

Os: CentOS 6x
Web: nginx + php-fpm
Re: install error
  • Quote

Post by prmx89 » Sun Sep 27, 2020 1:00 am

cris_direkthost wrote: ↑
Sat Sep 19, 2020 12:36 pm
prmx89 wrote: ↑
Wed Sep 16, 2020 5:50 am
grayfolk wrote: ↑
Tue Sep 15, 2020 3:53 am


There is a simple instruction:
On fresh server BEFORE Vesta installation:
1. Install Remi repo
2. Install yum-utils
3. Disable all php versions: yum-config-manager --disable remi-php*
4. Enable php version what you want: yum-config-manager --enable remi-php74
Then install Vesta CP.
Worked for me! Thank you so much:) This is my command line order to get installed successfully:

yum -y update
yum -y install php-cli php-zip wget unzip
wget http://rpms.famillecollet.com/enterpris ... ease-7.rpm
yum -y install epel-release
rpm -Uvh remi-release-7.rpm
yum -y install yum-utils
yum-config-manager --disable remi-php*
yum-config-manager --enable remi-php74
curl -O http://vestacp.com/pub/vst-install.sh
bash vst-install.sh

Actually I have small issue with Roundcube. I just can't log in - I made new account and trying to log in but still with no success (error 'Invalid request! No data was saved.') :(
I have the same problem with roundcube. Did you find any solution ?
Yes, but I had to do everything manually, and ofc it's a hassle (taking time). My solution has been to swap Vesta which is a little bit outdated to a bit modern Control Panel which runs flawlessly :) its CyberPanel
Top

Sonichaos
Posts: 1
Joined: Tue Mar 26, 2019 4:58 pm

Os: CentOS 6x
Web: nginx + php-fpm
Re: install error
  • Quote

Post by Sonichaos » Mon Oct 05, 2020 12:06 am

grayfolk wrote: ↑
Tue Sep 15, 2020 3:53 am
prmx89 wrote: ↑
Tue Sep 15, 2020 3:04 am
I have the same issue and I can't install VestaCP.
cris_direkthost wrote: ↑
Mon Sep 14, 2020 4:08 pm
You can try before vestacp install

yum install yum-utils

then

yum-config-manager --disable remi-php8
this one doesn't work
There is a simple instruction:
On fresh server BEFORE Vesta installation:
1. Install Remi repo
2. Install yum-utils
3. Disable all php versions: yum-config-manager --disable remi-php*
4. Enable php version what you want: yum-config-manager --enable remi-php74
Then install Vesta CP.
This one was the solution for my. Thanks!
Top

NickTheGreek
Posts: 1
Joined: Wed Oct 14, 2020 5:23 pm
Contact:
Contact NickTheGreek
Website

Os: CentOS 6x
Web: apache + nginx
Re: install error
  • Quote

Post by NickTheGreek » Wed Oct 14, 2020 5:26 pm

this did not work for me so i edited

vst-install-rhel.sh

and changed

Code: Select all

set_default_value 'remi' 'yes'
to

Code: Select all

set_default_value 'remi' 'no'
Top


Post Reply
  • Print view

23 posts
  • Previous
  • 1
  • 2
  • 3
  • Next

Return to “General Discussion”



  • Board index
  • All times are UTC
  • Delete all board cookies
  • The team
Powered by phpBB® Forum Software © phpBB Limited
*Original Author: Brad Veryard
*Updated to 3.2 by MannixMD
 

 

Login  •  Register

I forgot my password