差異處

這裏顯示兩個版本的差異處。

連向這個比對檢視

tech:zimbra [2018/05/21 00:20] – 建立 Jonathan Tsaitech:zimbra [2018/06/11 17:53] (目前版本) – [環境準備] Jonathan Tsai
行 1: 行 1:
 +====== [draft]CentOS6 安裝 Zimbra Mail Server ======
 +  * 安裝環境 : CentOS release 6.9 (Final) x86_64
 +  * Zimbra 8.6.0 
 +  * IP : 192.168.11.241
 +  * DN : zimbra.ichiayi.com
 +  * hostname : kvm-zimbra
  
 +===== 環境準備 =====
 +  * 關閉 selinux <code sh>
 +vi /etc/selinux/config</code><file>
 +:
 +SELINUX=disabled
 +</file>
 +  * 關閉 postfix 服務<code sh>
 +service postfix stop
 +chkconfig postfix off
 +</code>
 +  * 設定 /etc/hosts <file>
 +127.0.0.1   localhost zimbra.ichiayi.com localhost4 localhost4.localdomain4
 +::1         localhost zimbra.ichiayi.com localhost6 localhost6.localdomain6
 +192.168.11.241  zimbra.ichiayi.com kvm-zimbra
 +</file>
 +  * 重新開機<code sh>
 +sync;sync;sync;reboot
 +</code>
 +  * 安裝 zimbra 需要的套件((如果沒有安裝, 在執行 zimbra 的 install.sh 會提醒並中斷安裝程序)) <code sh>
 +yum install -y nc unzip
 +</code>
 +
 +===== 下載安裝 Zimbra =====
 +<code sh>
 +su - root
 +cd /opt
 +wget https://files.zimbra.com/downloads/8.6.0_GA/zcs-8.6.0_GA_1153.RHEL6_64.20141215151155.tgz
 +tar -zxvf zcs-8.6.0_GA_1153.RHEL6_64.20141215151155.tgz
 +cd zcs-8.6.0_GA_1153.RHEL6_64.20141215151155
 +./install.sh
 +</code>
 +
 +
 +
 +
 +===== 參考網址 =====
 +  * http://www.heminjie.com/email/437.html
 +  * https://wiki.zimbra.com/wiki/Ports
 +
 +{{tag>mail draft}}