[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
    vi /etc/selinux/config
    :
    SELINUX=disabled
  • 關閉 postfix 服務
    service postfix stop
    chkconfig postfix off
  • 設定 /etc/hosts
    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
  • 重新開機
    sync;sync;sync;reboot
  • 安裝 zimbra 需要的套件1)
    yum install -y nc unzip
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

1)
如果沒有安裝, 在執行 zimbra 的 install.sh 會提醒並中斷安裝程序
  • tech/zimbra.txt
  • 上一次變更: 2018/06/11 17:53
  • Jonathan Tsai