Zimbra的安裝與配置

 測試環境:

debian-506-i386-CD-1.iso
Zimbra Collaboration Suite - Open Source Edition

第一階段:前期準備 FQDN、DNS(BIND9)

sudo gedit /etc/network/interfaces
# The loopback network interface
auto lo
iface lo inet loopback
#The primary network interface
allow-hotplug eth1
iface eth1 inet static
address 192.168.1.37
netmask 255.255.255.0
gateway 192.168.1.1
 
sudo gedit /etc/hosts
127.0.0.1    localhost
192.168.1.37    server.mytest.com server

sudo gedit /etc/bind/named.conf
zone "mytest.com" {
    type master;
    file "/etc/bind/db.mytest.com";
};

zone "1.168.192.in-addr.arpa" {
    type master;
    file "/etc/bind/db.192.168.1";
};

sudo gedit /etc/bind/db.mytest.com
$TTL    604800
@    IN    SOA    mytest.com. root.mytest.com. (
                  1        ; Serial
             604800        ; Refresh
              86400        ; Retry
            2419200        ; Expire
             604800 )    ; Negative Cache TTL
;
@    IN    NS    ns.mytest.com.
@    IN    MX    10    mx.mytest.com.
@    IN    A       192.168.1.37    
ns    IN    A    192.168.1.37
server    IN    A    192.168.1.37
mx    IN    A    192.168.1.37
www    IN    CNAME    server.mytest.com.
@    IN    AAAA    ::1

sudo gedit /etc/bind/db.192.168.1
$TTL    604800
@    IN    SOA    ns.mytest.com. root.mytest.com. (
                  1        ; Serial
             604800        ; Refresh
              86400        ; Retry
            2419200        ; Expire
             604800 )    ; Negative Cache TTL
;
@    IN    NS    ns.
37    IN    PTR    ns.mytest.com
37    IN    PTR    mail.mytest.com
37    IN    PTR     server.mytest.com
37    IN    PTR    www.mytest.com
 
第二階段:安裝Zimbra
 
tar xzvf zcs608.tgz(重命名過的)
cd zcs608
sh install.sh
在安裝過程中先後遇到幾個比較有印象的問題
1,DNS的mx解析問題。前後折騰了很久,雖然目前是測試通過了,但是還沒找到這方面的詳細的資料,細節部分不是很理解。
2,libgmpc2。zimbra 的debian版本默認使用libgmp包,需要到util/utilfunc.sh當中去修改配置。
3,sysstat。突然出現的這個問題,現在重啓debian還有warnning的提示。
4,Address unconfigured (**) items (? - help) 出來這個嚇了我一跳。原來是要求輸入管理員密碼。按3,4之後根據提示輸入,保存配置文件啓動服務。
 
第三階段:配置、訪問Zimbra

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章