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

How to enable AXFR (Zone Transfer) in Bind on Vesta Control Panel

Enable AXFR (Zone Transfer) in Bind on Vesta Control Panel Replace following string in the named configuration file: allow-transfer {“none”;}; with allow-transfer { XXX.YYY.ZZZ.111; XXX.YYY.ZZZ.222; }; also-notify { XXX.YYY.ZZZ.111; XXX.YYY.ZZZ.222; }; The location of this file on RHEL and CentOS: /etc/named.conf The location of this file on Debian and Ubuntu: /etc/bind/named.conf

See More