自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

Zimbra的安裝與配置

運維 系統(tǒng)運維
Zimbra 提供的主要是Zimbra Desktop郵件管理軟件。我們安裝使用Zimbra中,會出現各種各樣的問題。無論是垃圾郵件、還是病毒郵件,或者是廣告噴我們一頭霧水。以下這篇文章主要介紹的是zimbra的安裝過程。

Zimbra的安裝與配置:

***階段:Zimbra的安裝與配置之前期準備 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

  /etc/init.d/networking restart

  安裝bind9的過程略...(選對源[/etc/apt/sources.list]很重要,不然的話可能需要去官方下載包來安裝)

  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

  $sudo gedit /etc/resolv.conf

  nameserver 192.168.1.37

  $sudo gedit /etc/bind/named.conf.options

  forwarders {

  192.168.1.1;

  };

  $/etc/init.d/bind9 restart

 

第二階段:Zimbra的安裝與配置之安裝Zimbra

  在安裝zimbra 之前請卸載debian自帶的exim4包。這很重要。

  tar xzvf zcs608.tgz(重命名過的)

  sudo chmod -R 777 zcs608(重命名過的)

  cd zcs608

  sh install.sh

  在安裝過程中先后遇到幾個比較有印象的問題:

  1,DNS的mx解析問題。前后折騰了很久,雖然目前是測試通過了,但是還沒找到這方面的詳細的資料,細節(jié)部分不是很理解。

  2,libgmp3c2。zimbra 的debian版本默認使用libgmp3包,需要到util/utilfunc.sh當中去修改配置。

  3,sysstat。缺少這個關聯包,用synaptic安裝就可以了。

  4,Address unconfigured (**) items (? - help) 出來這個嚇了我一跳。原來是要求輸入管理員密碼。按3,4之后根據提示輸入,保存配置文件啟動服務。

  5,提示port conflict detected:25 (zimbra-mta)。沒處理繼續(xù)安裝,到***測試正常訪問。

【編輯推薦】

  1. 開源軟件商Zimbra擬明年增加Web郵箱IM功能
  2. Zimbra郵件系統(tǒng)安裝
  3. Zimbra server的安裝
  4. Zimbra 未解決的三個細節(jié)問題
責任編輯:zhaolei 來源: 網絡轉載
相關推薦

2011-01-21 17:43:13

2011-01-19 12:56:45

Zimbraserve安裝

2011-01-20 11:00:41

Zimbra配置

2011-02-21 17:28:50

Zimbraserver安裝

2011-02-21 17:41:58

2011-02-21 17:17:05

UbuntuZimbra安裝

2011-01-19 12:29:44

2011-01-21 16:49:15

Zimbra

2011-03-21 10:15:07

LAMPLAMP安裝LAMP配置

2011-01-21 17:28:37

Zimbra

2011-01-21 17:01:34

Zimbra

2011-02-21 17:51:39

Zimbra入門新手

2014-01-16 14:20:38

CactiCacti監(jiān)控

2009-07-20 15:37:26

JRuby安裝JRuby配置

2012-09-17 10:38:29

Nignxubuntu

2011-01-21 17:09:06

Zimbra

2012-10-22 16:48:31

IBMdw

2011-02-24 14:47:48

ProFTPD

2011-03-22 10:10:18

CentOSNagios安裝

2009-07-09 14:02:58

Tomcat JDK
點贊
收藏

51CTO技術棧公眾號