Zimbra的核心產品是Zimbra協做套件(Zimbra Collaboration Suite,簡稱ZCS)。除了它的核心功能是電子郵件和日程安排服務器,固然還包括許多其它的功能,就象是下一代的微軟Exchange。在電子郵件和日程安排以外,它還提供文檔存儲和編輯、即時消息以及一個利用獲獎技術開發的全功能的管理控制檯。ZCS同時也提供移動設備的支持,以及與部署於Windows、Linux或Apple操做系統中的桌面程序的同步功能。ZCS 8.6 帶來了新的特性,改善郵件服務器,它提供了一個更好的web客戶端體驗。linux
系統:Centos7 ip地址:192.168.1.109c++
# sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/sysconfig/selinux # yum -y install iptables-services # iptables -F # iptables -X # iptables -z # service iptables save # reboot
# hostnamectl set-hostname mail.zimbra.com # echo "192.168.1.109 mail.zimbra.com" >> /etc/hosts
# yum -y update # yum -y install perl perl-core nmap sudo libidn gmp libaio libstdc++ unzip sysstat sqlite nc
# systemctl stop postfix.service # systemctl disable postfix.service
# yum -y install bind bind-utils
vim /etc/named.conf 添加下面的配置: zone "zimbra.com" IN { type master; file "zimbra.com"; allow-update { none; }; }; zone "1.168.192.in-addr.arpa" IN { type master; file "192.168.1.arpa"; allow-update { none; }; };
# vim /var/named/zimbra.com $TTL 1D @ IN SOA @ rname.invalid. ( 0 ; serial 1D ; refresh 1H ; retry 1W ; expire 3H ) ; minimum NS ns.zimbra.com. MX 10 mail.zimbra.com. ns A 192.168.1.109 mail A 192.168.1.109 # vim /var/named/192.168.1.arpa $TTL 1D @ IN SOA @ rname.invalid. ( 0 ; serial 1D ; refresh 1H ; retry 1W ; expire 3H ) ; minimum NS ns.zimbra.com. 109 PTR ns.zimbra.com. 109 PTR mail.zimbra.com.
# systemctl restart named.service
# echo "nameserver 127.0.0.1" >> /etc/resolv.conf
# wget https://files.zimbra.com/downloads/8.6.0_GA/zcs-8.6.0_GA_1153.RHEL7_64.20141215151110.tgz
# tar -zxvf zcs-8.6.0_GA_1153.RHEL7_64.20141215151110 # mv zcs-8.6.0_GA_1153.RHEL7_64.20141215151110 zimbra
# cd zimbra # ./install.sh --platform-override Operations logged to /tmp/install.log.2744 Checking for existing installation... ... ... Do you agree with the terms of the software license agreement? [N] y ... ... Install zimbra-ldap [Y] Install zimbra-logger [Y] Install zimbra-mta [Y] Install zimbra-dnscache [Y] n Install zimbra-snmp [Y] Install zimbra-store [Y] Install zimbra-apache [Y] Install zimbra-spell [Y] Install zimbra-memcached [Y] Install zimbra-proxy [Y] ... ... The system will be modified. Continue? [N] y ... ... DNS ERROR resolving MX for mail.zimbra.com It is suggested that the domain name have an MX record configured in DNS Change domain name? [Yes] Create domain: [mail.zimbra.com] zimbra.com MX: mail.zimbra.com (192.168.1.109) Interface: 127.0.0.1 Interface: ::1 Interface: 192.168.1.109 done. Checking for port conflicts Main menu 1) Common Configuration: 2) zimbra-ldap: Enabled 3) zimbra-logger: Enabled 4) zimbra-mta: Enabled 5) zimbra-snmp: Enabled 6) zimbra-store: Enabled +Create Admin User: yes +Admin user to create: admin@zimbra.com ******* +Admin Password UNSET +Anti-virus quarantine user: virus-quarantine.vhwa2pqsa7@zimbra.com ... ... Address unconfigured (**) items (? - help) 6 Store configuration 1) Status: Enabled 2) Create Admin User: yes 3) Admin user to create: admin@zimbra.com ** 4) Admin Password UNSET ... ... Select, or 'r' for previous menu [r] 4 Password for admin@zimbra.com (min 6 characters): [5okG5xTdX] 123456 Store configuration ... Select, or 'r' for previous menu [r] r ... ... *** CONFIGURATION COMPLETE - press 'a' to apply Select from menu, or press 'a' to apply config (? - help) a Save configuration data to a file? [Yes] Save config in file: [/opt/zimbra/config.11982] Saving config in /opt/zimbra/config.11982...done. The system will be modified - continue? [No] yes ... ... Notify Zimbra of your installation? [Yes] no Notification skipped Setting up zimbra crontab...done. Moving /tmp/zmsetup04082016-205457.log to /opt/zimbra/log Configuration complete - press return to exit
# su - zimbra //切換到zimbra用戶 # zmcontrol start //啓動zimbra # zmcontrol status //查看啓動狀態 # zmcontrol stop //中止zimbra
查看zimbra啓動狀態:web
訪問zimbra管理頁面,在瀏覽器輸入:sql
https://192.168.1.109:7071
登陸界面:apache
後臺管理界面:vim
訪問zimbra客戶端,在瀏覽器輸入:瀏覽器
https://192.168.1.109
用戶登陸界面:服務器
用戶界面:app
免費提供最新Linux技術教程書籍,爲開源技術愛好者努力作得更多更好:https://www.linuxprobe.com/dom