温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

CentOS 7.0中如何安装ZCS 8.6.0

发布时间:2022-01-24 11:58:01 来源:亿速云 阅读:246 作者:柒染 栏目:开发技术

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