CentOS 7 — fail2ban — как почистить базы fail2ban.sqlite3
# systemctl stop fail2ban # truncate -s 0 /var/log/fail2ban.log # rm -rf /var/lib/fail2ban/fail2ban.sqlite3* # systemctl restart fail2ban
CentOS 7 — fail2ban — как почистить базы fail2ban.sqlite3
# systemctl stop fail2ban # truncate -s 0 /var/log/fail2ban.log # rm -rf /var/lib/fail2ban/fail2ban.sqlite3* # systemctl restart fail2ban
Меняем порт в конфигурационном файле SSH сервера, воспользоваться можно любым текстовым редактором
vim /etc/ssh/sshd_config
Ищем строку:
Port 22
Если строка начинается с символа #, его нужно удалить и вместо 22 порта, написать любой другой, например 2233
Do the below steps to restart SSH service on CentOS 7 / Redhat 7 Servers.
1. Log into your Linux Server via SSH as ‘root’ user
2. Run the command ‘systemctl restart sshd.service’ to restart SSH
Command 1 : service sshd restart
OR
Command 2 : systemctl restart sshd.service