中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

CentOS 7.0中如何安裝ZCS 8.6.0

發布時間:2022-01-24 11:58:01 來源:億速云 閱讀:268 作者:柒染 欄目:開發技術

CentOS 7.0中如何安裝ZCS 8.6.0,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

ZCS最主要的功能就是電子郵件和日程安排服務器,除此之外還提供了,文檔存儲和編輯、即時消息以及一個利用獲獎技術開發的全功能的管理控制臺。

環境

系統:Centos7
ip地址:192.168.1.109

安裝前準備

1.關閉SELINUX并清空iptable規則

# 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

2.配置主機名

# hostnamectl set-hostname mail.zimbra.com
# echo "192.168.1.109  mail.zimbra.com" >> /etc/hosts

3.安裝zimbra所需要的包和庫

# yum -y update
# yum -y install perl perl-core nmap sudo libidn gmp libaio libstdc++ unzip sysstat sqlite nc

4.關閉安裝的MTA服務

# systemctl stop postfix.service
# systemctl disable postfix.service

配置dns服務器

1.安裝bind

# yum -y install bind bind-utils

2.修改主配置文件

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; };
};

2.配置區域配置文件

# 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.

3.重啟bind

# systemctl restart named.service

4.使用本地dns服務器

# echo "nameserver 127.0.0.1" >> /etc/resolv.conf

安裝zimbra

1.下載zimbra

# wget https://files.zimbra.com/downloads/8.6.0_GA/zcs-8.6.0_GA_1153.RHEL7_64.20141215151110.tgz

2.解壓壓縮包并修改文件夾名

# tar -zxvf zcs-8.6.0_GA_1153.RHEL7_64.20141215151110
# mv zcs-8.6.0_GA_1153.RHEL7_64.20141215151110 zimbra

3.運行腳本開始安裝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] nInstall 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) 6Store 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] 4Password for admin@zimbra.com (min 6 characters): [5okG5xTdX] 123456Store 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) aSave 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] noNotification skipped
Setting up zimbra crontab...done.

Moving /tmp/zmsetup04082016-205457.log to /opt/zimbra/log

Configuration complete - press return to exit

4.啟動zimbra并查看狀態

# su - zimbra        //切換到zimbra用戶
# zmcontrol start    //啟動zimbra

# zmcontrol status   //查看啟動狀態
# zmcontrol stop     //停止zimbra

查看zimbra啟動狀態:
CentOS 7.0中如何安裝ZCS 8.6.0

5.訪問管理頁面測試

訪問zimbra管理頁面,在瀏覽器輸入:

https://192.168.1.109:7071

登錄界面:
CentOS 7.0中如何安裝ZCS 8.6.0
后臺管理界面:
CentOS 7.0中如何安裝ZCS 8.6.0
訪問zimbra客戶端,在瀏覽器輸入:

https://192.168.1.109

用戶登錄界面:
CentOS 7.0中如何安裝ZCS 8.6.0
用戶界面:
CentOS 7.0中如何安裝ZCS 8.6.0

ZCS 8.6版本還帶來了一些新的特性,改善郵件服務器,它提供了一個更好的web客戶端體驗。

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南江县| 青铜峡市| 余庆县| 天台县| 泗水县| 明溪县| 抚顺县| 平塘县| 沙洋县| 安平县| 汝城县| 鹿泉市| 章丘市| 六盘水市| 巧家县| 凤台县| 九寨沟县| 新乡市| 兴宁市| 大渡口区| 宝坻区| 调兵山市| 泗洪县| 高州市| 尉氏县| 兰坪| 孟村| 昔阳县| 五大连池市| 吉首市| 白银市| 舟山市| 天津市| 岳普湖县| 林周县| 泸州市| 博野县| 德昌县| 凌源市| 张掖市| 绥棱县|