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

Zimbra server 的安裝

運(yùn)維 系統(tǒng)運(yùn)維
Zimbra是一套開源協(xié)同辦公套件。包括WebMail,日歷,通信錄,Web文檔管理和創(chuàng)作等等。其最大的特色在于其采用Ajax技術(shù)模仿CS桌面應(yīng)用軟件的風(fēng)格。并且客戶端兼容Firefox,Safari和IE瀏覽器。本文講述的是Zimbra server 的安裝。

Zimbra server 安裝

  zimbra系統(tǒng)缺省使用UTF-8進(jìn)行郵件編碼,可能會(huì)在部分免費(fèi) 郵件服務(wù)的web頁面中顯示亂碼,但根據(jù)個(gè)人測(cè)試目前國內(nèi)主流網(wǎng)站提供的郵件服務(wù)不會(huì)出現(xiàn)這個(gè)問題。

  一、 系統(tǒng)要求及配置環(huán)境

  Redhat Linux AS 4 需要完全安裝

  Zimbra server 5 for redhat 4

  固定IP:61.183.xx.xx

  域名:xxx.com,并對(duì)域名作mx解析到61.183.xx.xx

  服務(wù)器采用三塊72.8g硬盤作raid5陣列,可用空間為145.6g

  二、 安裝操作系統(tǒng)

  1. 正常安裝Redhat linux AS 4,在分區(qū)時(shí)選擇自動(dòng)分區(qū)。

  2. 在選擇防火墻時(shí)必須選擇關(guān)閉防火墻。

  3. 在選擇selinux時(shí),必須選擇禁用。

  4. 在選擇程序時(shí)選擇“全部安裝”。

  三、 安裝前的配置

  安裝前必須配置dns服務(wù)。

  1. 配置/etc/named.conf文件,配置如下:

  1.   // named.conf for Red Hat caching-nameserver  
  2.  
  3.   //  
  4.  
  5.   options {  
  6.  
  7.   directory "/var/named";  
  8.  
  9.   dump-file "/var/named/data/cache_dump.db";  
  10.  
  11.   statistics-file "/var/named/data/named_stats.txt";  
  12.  
  13.   forwarders {202.103.24.68;};  
  14.  
  15.   // query-source address * port 53;  
  16.  
  17.   };  
  18.  
  19.   //  
  20.  
  21.   // a caching only nameserver config  
  22.  
  23.   //  
  24.  
  25.   controls {  
  26.  
  27.   inet 127.0.0.1 allow { localhost; } keys { rndckey; };  
  28.  
  29.   };  
  30.  
  31.   zone "." IN {  
  32.  
  33.   type hint;  
  34.  
  35.   file "named.ca";  
  36.  
  37.   };  
  38.  
  39.   zone "localdomain" IN {  
  40.  
  41.   type master;  
  42.  
  43.   file "localdomain.zone";  
  44.  
  45.   allow-update { none; };  
  46.  
  47.   };  
  48.  
  49.   zone "localhost" IN {  
  50.  
  51.   type master;  
  52.  
  53.   file "localhost.zone";  
  54.  
  55.   allow-update { none; };  
  56.  
  57.   };  
  58.  
  59.   zone "xxx.com" IN {  
  60.  
  61.   type master;  
  62.  
  63.   file "xxx.com.zone";  
  64.  
  65.   allow-update { none; };  
  66.  
  67.   };  
  68.  
  69.   zone "xx.88.168.192.in-addr.arpa" IN {  
  70.  
  71.   type master;  
  72.  
  73.   file "xx.88.168.192.in-addr.arpa";  
  74.  
  75.   allow-update { none; };  
  76.  
  77.   };  
  78.  
  79.   zone "0.0.127.in-addr.arpa" IN {  
  80.  
  81.   type master;  
  82.  
  83.   file "named.local";  
  84.  
  85.   allow-update { none; };  
  86.  
  87.   };  
  88.  
  89.   zone "0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" IN {  
  90.  
  91.   type master;  
  92.  
  93.   file "named.ip6.local";  
  94.  
  95.   allow-update { none; };  
  96.  
  97.   };  
  98.  
  99.   zone "255.in-addr.arpa" IN {  
  100.  
  101.   type master;  
  102.  
  103.   file "named.broadcast";  
  104.  
  105.   allow-update { none; };  
  106.  
  107.   };  
  108.  
  109.   zone "0.in-addr.arpa" IN {  
  110.  
  111.   type master;  
  112.  
  113.   file "named.zero";  
  114.  
  115.   allow-update { none; };  
  116.  
  117.   };  
  118.  

  2. 在/var/named/chroot/var/named創(chuàng)建文件68.88.168.192.in-addr.arpa,并作以下配置:

  1.   TTL 86400  
  2.  
  3.   @ IN SOA mail.xxx.com. admin.xxx.com. (  
  4.  
  5.   1997022700 ; Serial  
  6.  
  7.   28800 ; Refresh  
  8.  
  9.   14400 ; Retry  
  10.  
  11.   3600000 ; Expire  
  12.  
  13.   86400 ) ; Minimum  
  14.  
  15.   IN NS mail.xxx.com.  
  16.  
  17.   1 IN PTR mail.xxx.com.  
  18.  

  3. 在/var/named/chroot/var/named創(chuàng)建文件xxx.com.zone,并作以下配置:

  1.   $TTL 86400  
  2.  
  3.   @ IN SOA mail.xxx.com. admin.xxx.com. (  
  4.  
  5.   42 ; serial (d. adams)  
  6.  
  7.   3H ; refresh  
  8.  
  9.   15M ; retry  
  10.  
  11.   1W ; expiry  
  12.  
  13.   1D ) ; minimum  
  14.  
  15.   IN NS mail.xxx.com.  
  16.  
  17.   IN MX 0 mail.xxx.com.  
  18.  
  19.   localhost IN A 127.0.0.1  
  20.  
  21.   mail IN A 192.168.88.xx  
  22.  

  4. 在/var/named/下創(chuàng)建鏈接,命令如下:

  1.   [root@mail named]# ln -s /var/named/chroot/var/named/68.88.168.192.in-addr.arpa  
  2.  
  3.   [root@mail named]# ln -s /var/named/chroot/var/named/xxx.com.zone  
  4.  

  5. 啟動(dòng)dns服務(wù),命令如下:

  1.   [root@mail home]# service named restart  
  2.  

  6. 自動(dòng)啟動(dòng)dns服務(wù),命令如下:

  1.   [root@mail home]# chkconfig named on  
  2.  

  四、 安裝zimbra server

  1. 關(guān)閉sendmai服務(wù)及停止sendmail服務(wù)

  1.   [root@mail home]# chkconfig sendmail off  
  2.  
  3.   [root@mail home]# service sendmail stop  
  4.  

  2. 編輯/etc/hosts文件。如下:

  1.   # Do not remove the following line, or various programs  
  2.  
  3.   # that require network functionality will fail.  
  4.  
  5.   127.0.0.1 localhost.localdomain localhost  
  6.  
  7.   192.168.88.68 mail.xxx.com mail  
  8.  

  3. 編輯/etc/resolv.conf。如下:

  1.   search xxx.com  
  2.  
  3.   nameserver 192.168.88.xx  
  4.  
  5.   nameserver 202.103.24.68  
  6.  

  4. 解壓zimbra server安裝包

  裝安裝包放在/var/tmp下,并解壓,命令如下:

  1.   [root@mail tmp]# tar zxvf zcs-5.0.16_GA_2921.RHEL4.20090429033149  

【編輯推薦】
 

 

  1. Ubuntu下Zimbra的安裝
  2. 設(shè)置Zimbra黑名單白名單
  3. Zimbra的簡單配置
  4. Zimbra的安裝與配置
  5. Zimbra server的安裝
  6. Zimbra 未解決的三個(gè)細(xì)節(jié)問題

 

責(zé)任編輯:zhaolei 來源: 網(wǎng)絡(luò)轉(zhuǎn)載
相關(guān)推薦

2011-01-19 12:56:45

Zimbraserve安裝

2011-02-21 17:41:58

2011-01-21 17:01:34

Zimbra

2011-02-21 17:17:05

UbuntuZimbra安裝

2011-01-20 11:00:07

Zimbra安裝

2011-01-19 12:29:44

2011-01-20 11:00:41

Zimbra配置

2011-01-21 17:43:13

2011-01-21 16:49:15

Zimbra

2011-01-21 17:28:37

Zimbra

2011-02-21 17:51:39

Zimbra入門新手

2011-01-21 17:09:06

Zimbra

2011-01-21 17:15:35

Zimbra

2011-01-19 13:11:25

Zimbra白名單證書

2011-03-07 14:25:57

FileZilla安裝

2012-07-17 09:43:58

2021-12-31 08:15:00

Percona SerMySQL開發(fā)

2011-01-21 17:53:44

Zimbra

2010-07-27 13:07:23

NFS Server

2010-07-14 10:03:40

SQL Server
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)