【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://www.blogjava.net/zhyiwww
|----------------------------------------------------------------------------------------|
posted on 2010-06-05 16:33
zhyiwww 阅读(1060)
评论(0) 编辑 收藏 所属分类:
linux