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

Zimbra的簡單配置

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

Zimbra的簡單配置

一、前提工作

  CentOS 5.3默認安裝

  關(guān)閉防火墻

  關(guān)閉SELinux

  zimbra服務(wù)器的IP為 10.44.100.66

  關(guān)閉不必要的服務(wù)開機啟動

 

  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 應為你服務(wù)器的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 

  創(chuàng)建名字服務(wù)配置文件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.   }; 

  創(chuàng)建數(shù)據(jù)文件

  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服務(wù)器的DNS服務(wù)器地址

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

  啟動named

  1.   # service named start 

  添加到開機啟動

  1.   # chkconfig named on 

  測試解釋是否正常

  1.   # nslookup mail.rookie.com 

  如出現(xiàn)以下內(nèi)容說明正常

 

  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

  當出現(xiàn)以下畫面的時候

  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,設(shè)置 配置員密碼

  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]

  提示系統(tǒng)會被修改,這里要選擇Yes

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

  是否把安裝信息發(fā)送到zimbra 官網(wǎng),yes 和 no 都可以

  Notify Zimbra of your installation? [Yes]

  出現(xiàn)以下行證明安裝配置成功

 

  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郵件系統(tǒng)安裝
  3. Zimbra server的安裝
  4. Zimbra 未解決的三個細節(jié)問題
  5. Zimbra的安裝與配置

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

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:41:58

2011-02-21 17:28:50

Zimbraserver安裝

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:43:13

2011-01-21 17:09:06

Zimbra

2011-01-19 12:29:44

2010-04-21 17:56:22

Unix網(wǎng)卡配置

2011-01-21 17:15:35

Zimbra

2011-01-19 13:11:25

Zimbra白名單證書

2010-09-26 14:27:50

配置DHCP中繼

2012-07-17 09:43:58

2010-03-29 15:57:34

2010-07-20 16:58:59

2011-01-21 09:09:22

Sendmail

2010-06-03 13:21:07

HadoopHBase
點贊
收藏

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