【1】配置perl版本為5.8
如果你的ubunut是10.04版本的話,就需要把原來的perl版本卸載掉,因為版本太高。
在zimbra中寫定了使用的perl版本號是5.8,所以需要安裝perl5.8
【2】安裝bind9并配置hosts
這一步非常重要
#aptitude install bind9
配置bind
#vim /etc/bind/name.conf
添加如下內容
zone "xxx.com.cn" {
type master;
file "/etc/bind/ccxe.com.cn";
};
zone "1.0.10.in-addr.arpa" {
type master;
file "/etc/bind/xxx.com.cn";
};
# vim /etc/bind/xxx.com.cn
內容為:
;BIND reverse data file for empty rfc1918 zone
;
; DO NOT EDIT THIS FILE - it is used for multiple zones.
; Instead, copy it, edit named.conf, and use that copy.
;
$TTL 86400
@ IN SOA xxx.com.cn. root.localhost. (
1 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
86400 ) ; Negative Cache TTL
;
@ IN NS mail
mail IN A 10.0.1.11
120 IN PTR mail.xxx.com.cn.
#/etc/init.d/bind9 restart
測試bind配置
#nslook
> server mail.xxx.com.cn
Default server: mail.xxx.com.cn
Address: 10.0.1.11#53
就ok了
【3】安裝zimbra
這個按照安裝方法就可以了
|----------------------------------------------------------------------------------------|
版權聲明 版權所有 @zhyiwww
引用請注明來源 http://m.tkk7.com/zhyiwww
|----------------------------------------------------------------------------------------|
posted on 2010-06-05 16:33
zhyiwww 閱讀(1070)
評論(0) 編輯 收藏 所屬分類:
linux