成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

Zimbra的簡單配置

運維 系統運維
Zimbra 提供的主要是Zimbra Desktop郵件管理軟件。該如何配置Zimbra呢?以下這篇文章主要介紹的是zimbra的配置過程。

Zimbra的簡單配置

一、前提工作

  CentOS 5.3默認安裝

  關閉防火墻

  關閉SELinux

  zimbra服務器的IP為 10.44.100.66

  關閉不必要的服務開機啟動

 

  1.   # chkconfig sendmail off  
  2.  
  3.   # chkconfig ip6tables off  
  4.  
  5.   # chkconfig iptables off 

二、安裝過程

  安裝一些必要的包

  # yum install libtool-ltdl compat-libstdc++-33 sysstat

  修改主機名

  # echo "10.44.100.66 mail.rookie.com mail" >> /etc/hosts

  10.44.100.66 應為你服務器的IP地址

  安裝Name Service

  默認安裝的centOS 都已安裝了named ,如果沒安裝自己再裝一次吧

  # rpm -qa |grep bind #查看named 是否安裝

  1.   bind-libs-9.3.4-10.P1.el5  
  2.  
  3.   ypbind-1.19-11.el5  
  4.  
  5.   bind-chroot-9.3.4-10.P1.el5  
  6.  
  7.   bind-9.3.4-10.P1.el5  
  8.  
  9.   bind-utils-9.3.4-10.P1.el5 

  創建名字服務配置文件named.conf

  1.   # vi /var/named/chroot/etc/named.conf  
  2.  
  3.   options   
  4.  
  5.   {  
  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.   };  
  14.  
  15.   include "/etc/rndc.key";  
  16.  
  17.   // We are the master server for mail.rookie.com  
  18.  
  19.   zone "mail.rookie.com" {  
  20.  
  21.   type master;  
  22.  
  23.   file "db.mail.rookie.com";  
  24.  
  25.   }; 

  創建數據文件

  1.   # vi /var/named/chroot/var/named/db.mail.rookie.com  
  2.  
  3.   ;  
  4.  
  5.   ; Addresses and other host information.  
  6.  
  7.   ;  
  8.  
  9.   @ IN SOA mail.rookie.com. hostmaster.mail.rookie.com. (  
  10.  
  11.   10118 ; Serial  
  12.  
  13.   43200 ; Refresh  
  14.  
  15.   3600 ; Retry  
  16.  
  17.   3600000 ; Expire  
  18.  
  19.   2592000 ) ; Minimum  
  20.  
  21.   ; Define the nameservers and the mail servers  
  22.  
  23.   IN NS 10.44.100.66  
  24.  
  25.   IN A 10.44.100.66  
  26.  
  27.   IN MX 10 mail.rookie.com. 

  定義zimbra服務器的DNS服務器地址

  1.   # echo "nameserver 10.44.100.66" >> /etc/resolv.conf 

  啟動named

  1.   # service named start 

  添加到開機啟動

  1.   # chkconfig named on 

  測試解釋是否正常

  1.   # nslookup mail.rookie.com 

  如出現以下內容說明正常

 

  1.   Server: 10.44.100.66  
  2.  
  3.   Address: 10.44.100.66#53  
  4.  
  5.   Name: mail.rookie.com  
  6.  
  7.   Address: 10.44.100.66 

#p#

三、安裝zimbra

  下載zimbra 包

  1.   # wget http://h.yimg.com/lo/downloads/6.0.1_GA/zcs-6.0.1_GA_1816.RHEL5.20090911181524.tgz 

  解壓tgz包

  1.   # tar zxvf zcs-6.0.1_GA_1816.RHEL5.20090911181524.tgz 

  安裝zimbra

  1.   # cd zcs-6.0.1_GA_1816.RHEL5.20090911181524  
  2.  
  3.   # ./install.sh --platform-override 

  安裝過程會有N多提示,對新手來說前面的都可以默認

  至到

  install anyway? [N] 選擇Y

  The system will be modified. Continue? [N] 選擇Y

  當出現以下畫面的時候

  Main menu

  1) Common Configuration:

  2) zimbra-ldap: Enabled

  3) zimbra-store: Enabled

  +Create Admin User: yes

  +Admin user to create: admin@mail.rookie.com

  ******* +Admin Password UNSET

  +Enable automated spam training: yes

  +Spam training user: spam.o1irkbvbks@mail.rookie.com

  +Non-spam(Ham) training user: ham.1zaab3n5vd@mail.rookie.com

  +Global Documents Account: wiki@mail.rookie.com

  +SMTP host: mail.rookie.com

  +Web server HTTP port: 80

  +Web server HTTPS port: 443

  +Web server mode: http

  +IMAP server port: 143

  +IMAP server SSL port: 993

  +POP server port: 110

  +POP server SSL port: 995

  +Use spell check server: yes

  +Spell server URL: http://mail.rookie.com:7780/aspell.php

  +Configure for use with mail proxy: FALSE

  +Configure for use with web proxy: FALSE

  4) zimbra-mta: Enabled

  5) zimbra-snmp: Enabled

  6) zimbra-logger: Enabled

  7) zimbra-spell: Enabled

  8) Default Class of Service Configuration:

  r) Start servers after configuration yes

  s) Save config to file

  x) Expand menu

  q) Quit

  Address unconfigured (**) items (? - help)

  選擇3 回車,再選擇4,設置 配置員密碼

  1.   Password for admin@mail.rookie.com (min 6 characters): [UKzK4JXi] 

  輸入一次就完成

  完成后輸入r回到上級目錄

  1.   Select, or 'r' for previous menu 

  輸入a 應用剛剛的修改

  

  1. *** CONFIGURATION COMPLETE - press 'a' to apply  
  2.  
  3.   Select from menu, or press 'a' to apply config (? - help) 

  再次確定,直接回車

  Save configuration data to a file? [Yes]

  Save config in file: [/opt/zimbra/config.8916]

  提示系統會被修改,這里要選擇Yes

  The system will be modified - continue? [No] Yes

  是否把安裝信息發送到zimbra 官網,yes 和 no 都可以

  Notify Zimbra of your installation? [Yes]

  出現以下行證明安裝配置成功

 

  1.   Configuration complete - press return to exit 

四、測試

  安裝完成,可以測試一下了

  https://10.44.100.66:7071 注意是https,這里是zimbra的管理控制臺

  http://10.44.100.66 這是里用戶webmail

【編輯推薦】

  1. 開源軟件商Zimbra擬明年增加Web郵箱IM功能
  2. Zimbra郵件系統安裝
  3. Zimbra server的安裝
  4. Zimbra 未解決的三個細節問題
  5. Zimbra的安裝與配置

責任編輯:zhaolei 來源: 網絡轉載
相關推薦

2011-01-21 16:49:15

Zimbra

2011-01-20 11:00:07

Zimbra安裝

2011-01-19 12:56:45

Zimbraserve安裝

2011-02-21 17:28:50

Zimbraserver安裝

2011-02-21 17:41:58

2011-01-21 17:28:37

Zimbra

2011-02-21 17:17:05

UbuntuZimbra安裝

2011-02-21 17:51:39

Zimbra入門新手

2011-01-21 17:09:06

Zimbra

2011-01-21 17:43:13

2011-01-19 12:29:44

2010-04-21 17:56:22

Unix網卡配置

2011-01-19 13:11:25

Zimbra白名單證書

2011-01-21 17:15:35

Zimbra

2010-09-26 14:27:50

配置DHCP中繼

2012-07-17 09:43:58

2011-01-21 17:53:44

Zimbra

2010-07-20 16:58:59

2010-03-29 15:57:34

2011-01-21 09:09:22

Sendmail
點贊
收藏

51CTO技術棧公眾號

主站蜘蛛池模板: 色婷婷精品 | 91中文字幕在线 | 欧美精品tv | 精品三区| 久久成人精品 | 91国内精品久久 | 国产一区二区三区在线免费观看 | 极情综合网 | 国产91久久久久蜜臀青青天草二 | 久久久视频在线 | 狠狠综合久久av一区二区小说 | 亚洲第一在线视频 | 国产精品高潮呻吟久久av黑人 | 欧美日韩中文字幕在线 | 精品一区二区在线观看 | 中文字幕精品一区久久久久 | 欧美日韩福利视频 | 国产精品久久久久久久久久久久久久 | 精品久久影院 | 成人欧美 | 精品欧美一区二区三区 | 国产精品久久久久久久久久 | 久久精品久久精品久久精品 | 中文字幕一区二区三区不卡在线 | 成人99 | 福利社午夜影院 | 最新中文字幕一区 | 91看片网 | 欧美美女一区二区 | 99爱免费 | 精品视频成人 | 亚洲欧洲在线视频 | 另类亚洲视频 | 午夜av电影 | 91婷婷韩国欧美一区二区 | 欧美日韩在线免费观看 | 亚洲欧美一区二区在线观看 | 久久精品日产第一区二区三区 | 亚洲国产精品成人 | 欧美精品一区二区三区在线播放 | 久久久久国产一级毛片高清网站 |