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 […]

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 […]

How to replace vsftpd with ProFTPD on a RHEL or CentOS in Vesta Control Panel

Replace vsftpd with ProFTPD on a RHEL or CentOS in Vesta Control Panel 1. Disable vsftpd service vsftpd stop chkconfig vsftpd off 2. Install software package yum install proftpd 3. Download configuration wget http://c.vestacp.com/0.9.8/rhel/proftpd.conf -O /etc/proftpd.conf 4. Change vesta settings sed -i “s/vsftpd/proftpd/” /usr/local/vesta/conf/vesta.conf 5. Enable proftpd chkconfig proftpd on service proftpd start