How to install phpmyadmin on linux

How to install phpmyadmin on linux server ? Ans : phpMyAdmin is a free software tool written in PHP intended to handle the administration of MySQL over the World Wide Web. phpMyAdmin supports a wide range of operations with MySQL. The most frequently used operations are supported by the user interface (managing databases, tables, fields, […]

See More

How to install Fail2Ban on Debian or Ubuntu in Vesta Control Panel

Install Fail2Ban on Debian or Ubuntu in Vesta Control Panel. The installation process for this tool is simple because the Ubuntu packaging team maintains a package in the default repositories. 1. Install fail2ban package apt-get install fail2ban 2. Download hba configuration cd /etc wget http://c.vestacp.com/0.9.8/ubuntu/fail2ban.tar.gz -O fail2ban.tar.gz 3. Extract configuration tar -xzf fail2ban.tar.gz rm -f […]

See More

How to replace vsftpd with ProFTPD on a Debian or Ubuntu in Vesta Control Panel

How to replace vsftpd with ProFTPD on a Debian or Ubuntu in Vesta Control Panel ? 1. Disable vsftpd service vsftpd stop update-rc.d -f vsftpd remove 2. Install software package apt-get install proftpd-basic proftpd-mod-vroot 3. Download configuration wget http://c.vestacp.com/0.9.8/debian/proftpd.conf -O /etc/proftpd/proftpd.conf 4. Change vesta settings sed -i “s/vsftpd/proftpd/” /usr/local/vesta/conf/vesta.conf 5. Restart proftpd service proftpd restart

See More