Remove Nginx and CentOS image

How to remove Nginx on a RHEL or CentOS in Vesta Control Panel

This is tutorial how to remove Nginx on a RHEL or CentOS in Vesta Control Panel 1. Stop nginx service nginx stop 2. Remove package yum remove nginx 3. Change vesta configuration cd /usr/local/vesta/conf sed -i “/PROXY_*/d” vesta.conf sed -i “s/8080/80/” vesta.conf sed -i “s/8443/433/” vesta.conf 4. Change httpd configuration cd /etc/httpd/conf.d sed -i “s/8080/80/” *.conf […]

See More

How to replace MySQL with Percona Server on RHEL or CentOS in Vesta Control Panel

Replace MySQL with Percona Server on RHEL or CentOS in Vesta Control Panel You can safely replace MySQL with Percona Server without lossing any data. In order to do it, please follow the instructions bellow 1. Install Percona repository yum install http://www.percona.com/downloads/percona-release/redhat/0.1-3/percona-release-0.1-3.noarch.rpm 2. Remove MySQL packages yum remove mysql mysql-server mysql-libs 3. Install Percona packages […]

See More

How to set up PostgreSQL on a RHEL or CentOS in Vesta Control Panel

Set up PostgreSQL on a RHEL or CentOS in Vesta Control Panel 1. Install PostgreSQL packages yum install postgresql postgresql-server postgresql-contrib phpPgAdmin * If you have remi installed then don’t forget to explicitly enable it. yum install –enablerepo=remi postgresql postgresql-server postgresql-contrib phpPgAdmin 2. Initialize database cluster service postgresql initdb 3. Download hba configuration wget http://c.vestacp.com/0.9.8/rhel/pg_hba.conf […]

See More