If you’re experiencing troubles with server communication, and have Icewarp installed on RedHat/CentOS server, it’s good practice to check following:
- iptables – check what rules are applied via iptables -L
- postfix – check the presence of this open-source Mail transfer Agent via postconf mail_version, which can block SMTP port 25; eventually uninstall it with the command yum remove postfix.
- firewalld – check availability of the firewall via systemctl status firewalld, eventually uninstall it with command yum remove firewalld
- nginx – check the presence of this server via command nginx, eventually uninstall it via command yum remove nginx
- apache – check if Apache server is not blocking port 80 via this command: lsof -nPi | grep ":80 (LISTEN)"; eventually uninstall it via yum erase httpd httpd-tools apr apr-util and userdel -r "apache"
- SELinux – check if SELinux is disabled by looking into its config: vi /etc/selinux/config; if it’s enabled, rewrite it to „disabled“
Comments
0 comments
Article is closed for comments.