我有基于 Ubuntu Server 的 VPS,安装了 LAMP。它有 Apache、MySQL、PHPMyAdmin、PHP 等,所有这些都用于我的网站。我安装了 iRedmail,现在我的网站无法再访问,只能重定向到 mydomain.com/mail,我的 Webmin 也瘫痪了。
我尝试删除它因此我按照这里的文章操作:http://www.iredmail.org/forum/topic333-iredmail-support-faq-how-to-uninstall-iredmail.html
似乎已删除,我还手动卸载了 Postfix。删除了所有非默认设置,/var/apache2/sites-enabled
但仍然无法像以前一样工作!它仍然重定向到 /mail 目录,Webmin 已关闭...
编辑:刚刚通过删除之前未注意到的 index.html 修复了重定向问题。但我的 Webmin 无法工作,即使重新安装并重新启动后也是如此。
我还检查了我的网站 /var/www/index.php 文件和 .htaccess 文件。没有重定向命令。
我不想重新安装所有东西,所以我需要做什么?我很生气,为什么它要触及我的 Apache 和 Webmin 安装?iRedmail 是垃圾。
答案1
解决了两个问题。
通过删除 index.html 或移除其中的元刷新标记来解决重定向问题。
<meta http-equiv="refresh" content="0;url=mail/">
并在终端中输入一些命令
# rm /etc/apache2/conf.d/roundcubemail.conf
# rm /etc/apache2/conf.d/cluebringer.conf
重新启动Apache:
# sudo service apache2 restart
命令来源:https://www.digitalocean.com/community/questions/how-to-remove-iredmail
对于 Webmin 和其他一些网络应用程序,IP 表存在问题。iRedmail 在那里搞乱了一些东西,所以我按照这篇文章操作,一切都恢复正常:
# sudo iptables -P INPUT ACCEPT
# sudo iptables -P FORWARD ACCEPT
# sudo iptables -P OUTPUT ACCEPT
# sudo iptables -F
# sudo iptables -X
来源:http://www.prash-babu.com/2008/10/how-to-flush-or-remove-all-iptables.html