How to protect your server from SSH Brute Force with “Fail2ban”
|

How to protect your server from SSH Brute Force with “Fail2ban”

Fail2ban is an open-source tool to prevent servers from brute force attacks. This tool will scan server log files and if found any suspicious attempts then it will block the particular IP for a specific time. Fail2ban also works to prevent dos or DDoS attacks, malicious traffic attacks on websites etc. Depending on the configuration…

How to protect ubuntu server from brute force attack using “fail2ban”
|

How to protect ubuntu server from brute force attack using “fail2ban”

Fail2ban is an open-source tool to prevent servers from brute force attacks. This tool will scan server log files and if found any suspicious attempts then it will block the particular IP for a specific time. Fail2ban also works to prevent dos or DDoS attacks, malicious traffic attacks on websites etc. Depending on the configuration…

How to configure Master-Slave replication for MySQL database on CentOS 7
|

How to configure Master-Slave replication for MySQL database on CentOS 7

MySQL replication enables you to sync data from one database server to another. So If your master database down for any reason then you can restore your all data from the slave database. To configure replication you should have two servers. Master Server : 192.168.20.2Slave Servcer: 192.168.20.3 You need to install MySQL in both servers…