Ubuntu

iRedmail 損壞了我的 LAMP 安裝

  • November 7, 2013

我有安裝了 LAMP 的基於 Ubuntu Server 的 VPS。它有 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 是垃圾。

修復了這兩個問題。

通過刪除 index.html 或刪除其中的元刷新標籤來修復重定向問題。

<meta http-equiv="refresh" content="0;url=mail/">

並通過在終端中輸入一些命令

# rm /etc/apache2/conf.d/roundcubemail.conf
# rm /etc/apache2/conf.d/cluebringer.conf

重啟阿帕奇:

# 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

引用自:https://serverfault.com/questions/551353