How to Setup Zimbra 8.8.12 On Rhel 7.9



Zimbra Coordinated effort Suite (ZCS) is an Open Source, cooperative stage for email servers, created in two versions, Open Source release (Free) and Organization Release (Paid), which offers types of assistance like LDAP, SMTP, POP and IMAP, webmail client, calendaring, assignments, antivirus, antispam and others.

This instructional exercise portrays how to introduce Zimbra Coordinated effort Suite Open Source Release on a CentOS/RHEL 7 server.

yum update -y

Install Development Tools and package zimbra needed

yum group install "Development Tools" -y

yum -y install unzip sysstat openssh-clients perl-core libaio nmap-ncat libstdc++.so.6 bind-utils bind

systemctl status firewalld

systemctl status postfix

systemctl stop postfix && systemctl disable postfix


Disable ipv6

nano /etc/sysctl.conf

Add line

net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1


service network restart

===========================================
CONFIGURE BIND DNS
===========================================

nano /etc/named.conf

options {
        listen-on port 53 { 127.0.0.1;any; }; <==========================
        listen-on-v6 port 53 { ::1; };
        directory       "/var/named";
        dump-file       "/var/named/data/cache_dump.db";
        statistics-file "/var/named/data/named_stats.txt";
        memstatistics-file "/var/named/data/named_mem_stats.txt";
        recursing-file  "/var/named/data/named.recursing";
        secroots-file   "/var/named/data/named.secroots";
        allow-query     { localhost;any; }; <===============================

        /*
         - If you are building an AUTHORITATIVE DNS server, do NOT enable recursion.
         - If you are building a RECURSIVE (caching) DNS server, you need to enable
           recursion.
         - If your recursive DNS server has a public IP address, you MUST enable access
           control to limit queries to your legitimate users. Failing to do so will
           cause your server to become part of large scale DNS amplification
           attacks. Implementing BCP38 within your network would greatly
           reduce such attack surface
        */
        recursion yes;

        dnssec-enable yes;
        dnssec-validation yes;

        /* Path to ISC DLV key */
        bindkeys-file "/etc/named.root.key";

        managed-keys-directory "/var/named/dynamic";

        pid-file "/run/named/named.pid";
        session-keyfile "/run/named/session.key";
};

logging {
        channel default_debug {
                file "data/named.run";
                severity dynamic;
        };
};

zone "mail.agl.net" IN {
        type master;
        file "/var/named/forward.zone";
};

zone "1.168.192.in-addr.arpa" IN {
        type master;
        file "/var/named/reverse.zone";
};

include "/etc/named.rfc1912.zones";
include "/etc/named.root.key";

 

###########################################

 cd /var/named/

 cp named.localhost forward.zone

 nano forward.zone

========================================================
$TTL 86400
@       IN SOA  mail.agl.net. root.mail.agl.net. (
                                        0       ; serial
                                        1D      ; refresh
                                        1H      ; retry
                                        1W      ; expire
                                        3H )    ; minimum
@               IN      NS      mail.agl.net.
@               IN      NS      agl.net.
@               IN      A       192.168.1.21
mail            IN      A       192.168.1.21
agl             IN      A       192.168.1.21
========================================================

cp forward.zone reverse.zone

nano reverse.zone


========================================================
$TTL 86400
@       IN SOA  mail.agl.net. root.mail.agl.net. (
                                        0       ; serial
                                        1D      ; refresh
                                        1H      ; retry
                                        1W      ; expire
                                        3H )    ; minimum
@               IN      NS      mail.agl.net.
@               IN      NS      agl.net.
mail            IN      A       192.168.1.21
agl             IN      A       192.168.1.21
21              IN      PTR     mail.agl.net.
21              IN      PTR     agl.net.

========================================================

cd

chown named.named -R /var/named

cd /var/named/

named-checkconf /etc/named.conf

named-checkzone mail.agl.net /var/named/forward.zone

named-checkzone mail.agl.net /var/named/reverse.zone

chgrp named /var/named/forward.zone

chgrp named /var/named/reverse.zone

=========================================================

Download Zimbra

wget -c https://files.zimbra.com/downloads/8.8.12_GA/zcs-8.8.12_GA_3794.RHEL7_64.20190329045002.tgz

Extract Zimbra

tar xvf zcs-8.8.12_GA_3794.RHEL7_64.20190329045002.tgz

cd zcs-8.8.12_GA_3794.RHEL7_64.20190329045002

./install.sh --force-upgrade --skip-activation-check --skip-upgrade-check

Operations logged to /tmp/install.log.rOacG09q
Checking for existing installation...
    zimbra-drive...NOT FOUND
    zimbra-imapd...NOT FOUND
    zimbra-patch...NOT FOUND
    zimbra-mta-patch...NOT FOUND
    zimbra-proxy-patch...NOT FOUND
    zimbra-license-tools...NOT FOUND
    zimbra-license-extension...NOT FOUND
    zimbra-network-store...NOT FOUND
    zimbra-network-modules-ng...NOT FOUND
    zimbra-chat...NOT FOUND
    zimbra-talk...NOT FOUND
    zimbra-ldap...NOT FOUND
    zimbra-logger...NOT FOUND
    zimbra-mta...NOT FOUND
    zimbra-dnscache...NOT FOUND
    zimbra-snmp...NOT FOUND
    zimbra-store...NOT FOUND
    zimbra-apache...NOT FOUND
    zimbra-spell...NOT FOUND
    zimbra-convertd...NOT FOUND
    zimbra-memcached...NOT FOUND
    zimbra-proxy...NOT FOUND
    zimbra-archiving...NOT FOUND
    zimbra-core...NOT FOUND


----------------------------------------------------------------------
PLEASE READ THIS AGREEMENT CAREFULLY BEFORE USING THE SOFTWARE.
SYNACOR, INC. ("SYNACOR") WILL ONLY LICENSE THIS SOFTWARE TO YOU IF YOU
FIRST ACCEPT THE TERMS OF THIS AGREEMENT. BY DOWNLOADING OR INSTALLING
THE SOFTWARE, OR USING THE PRODUCT, YOU ARE CONSENTING TO BE BOUND BY
THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL OF THE TERMS OF THIS
AGREEMENT, THEN DO NOT DOWNLOAD, INSTALL OR USE THE PRODUCT.

License Terms for this Zimbra Collaboration Suite Software:
https://www.zimbra.com/license/zimbra-public-eula-2-6.html
----------------------------------------------------------------------



Do you agree with the terms of the software license agreement? [N] y



Use Zimbra's package repository [Y]

Importing Zimbra GPG key

Configuring package repository

Checking for installable packages

Found zimbra-core (local)
Found zimbra-ldap (local)
Found zimbra-logger (local)
Found zimbra-mta (local)
Found zimbra-dnscache (local)
Found zimbra-snmp (local)
Found zimbra-store (local)
Found zimbra-apache (local)
Found zimbra-spell (local)
Found zimbra-memcached (repo)
Found zimbra-proxy (local)
Found zimbra-drive (repo)
Found zimbra-imapd (local)
Found zimbra-patch (repo)
Found zimbra-mta-patch (repo)
Found zimbra-proxy-patch (repo)


Select the packages to install

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]

Install zimbra-drive [Y]

Install zimbra-imapd (BETA - for evaluation only) [N] n

Install zimbra-chat [Y]
Checking required space for zimbra-core
Checking space for zimbra-store
Checking required packages for zimbra-store
zimbra-store package check complete.

Installing:
    zimbra-core
    zimbra-ldap
    zimbra-logger
    zimbra-mta
    zimbra-snmp
    zimbra-store
    zimbra-apache
    zimbra-spell
    zimbra-memcached
    zimbra-proxy
    zimbra-drive
    zimbra-patch
    zimbra-mta-patch
    zimbra-proxy-patch
    zimbra-chat

The system will be modified.  Continue? [N] y

Beginning Installation - see /tmp/install.log.rOacG09q for details...

                          zimbra-core-components will be downloaded and installed.
                            zimbra-timezone-data will be installed.
                          zimbra-common-core-jar will be installed.
                         zimbra-common-mbox-conf will be installed.
                   zimbra-common-mbox-conf-attrs will be installed.
                    zimbra-common-mbox-conf-msgs will be installed.
                  zimbra-common-mbox-conf-rights will be installed.
                           zimbra-common-mbox-db will be installed.
                         zimbra-common-mbox-docs will be installed.
                   zimbra-common-mbox-native-lib will be installed.
                         zimbra-common-core-libs will be installed.
                                     zimbra-core will be installed.
                          zimbra-ldap-components will be downloaded and installed.
                                     zimbra-ldap will be installed.
                                   zimbra-logger will be installed.
                           zimbra-mta-components will be downloaded and installed.
                                      zimbra-mta will be installed.
                          zimbra-snmp-components will be downloaded and installed.
                                     zimbra-snmp will be installed.
                         zimbra-store-components will be downloaded and installed.
                       zimbra-jetty-distribution will be downloaded and installed.
                                zimbra-mbox-conf will be installed.
                                 zimbra-mbox-war will be installed.
                             zimbra-mbox-service will be installed.
                       zimbra-mbox-webclient-war will be installed.
                   zimbra-mbox-admin-console-war will be installed.
                          zimbra-mbox-store-libs will be installed.
                                    zimbra-store will be installed.
                        zimbra-apache-components will be downloaded and installed.
                                   zimbra-apache will be installed.
                         zimbra-spell-components will be downloaded and installed.
                                    zimbra-spell will be installed.
                                zimbra-memcached will be downloaded and installed.
                         zimbra-proxy-components will be downloaded and installed.
                                    zimbra-proxy will be installed.
                                    zimbra-drive will be downloaded and installed (later).
                                    zimbra-patch will be downloaded and installed (later).
                                zimbra-mta-patch will be downloaded and installed.
                              zimbra-proxy-patch will be downloaded and installed (later).
                                     zimbra-chat will be downloaded and installed (later).

Downloading packages (11):
   zimbra-core-components
   zimbra-ldap-components
   zimbra-mta-components
   zimbra-snmp-components
   zimbra-store-components
   zimbra-jetty-distribution
   zimbra-apache-components
   zimbra-spell-components
   zimbra-memcached
   zimbra-proxy-components
   zimbra-mta-patch
      ...done

Removing /opt/zimbra
Removing zimbra crontab entry...done.
Cleaning up zimbra init scripts...done.
Cleaning up /etc/security/limits.conf...done.

Finished removing Zimbra Collaboration Server.


Installing repo packages (11):
   zimbra-core-components
   zimbra-ldap-components
   zimbra-mta-components
   zimbra-snmp-components
   zimbra-store-components
   zimbra-jetty-distribution
   zimbra-apache-components
   zimbra-spell-components
   zimbra-memcached
   zimbra-proxy-components
   zimbra-mta-patch
      ...done

Installing local packages (25):
   zimbra-timezone-data
   zimbra-common-core-jar
   zimbra-common-mbox-conf
   zimbra-common-mbox-conf-attrs
   zimbra-common-mbox-conf-msgs
   zimbra-common-mbox-conf-rights
   zimbra-common-mbox-db
   zimbra-common-mbox-docs
   zimbra-common-mbox-native-lib
   zimbra-common-core-libs
   zimbra-core
   zimbra-ldap
   zimbra-logger
   zimbra-mta
   zimbra-snmp
   zimbra-mbox-conf
   zimbra-mbox-war
   zimbra-mbox-service
   zimbra-mbox-webclient-war
   zimbra-mbox-admin-console-war
   zimbra-mbox-store-libs
   zimbra-store
   zimbra-apache
   zimbra-spell
   zimbra-proxy
      ...done

Installing extra packages (4):
   zimbra-drive
   zimbra-patch
   zimbra-proxy-patch
   zimbra-chat
      ...done

Running Post Installation Configuration:
Operations logged to /tmp/zmsetup.20221224-143746.log
Installing LDAP configuration database...done.
Setting defaults...    MX: x9.agl.net (107.181.236.157)

    Interface: 127.0.0.1
    Interface: 192.168.1.222
        107.181.236.157
        107.181.236.157


DNS ERROR - none of the MX records for mail.agl.net
resolve to this host
Change domain name? [Yes]
Create domain: [mail.agl.net] agl.net
    MX: x9.agl.net (107.181.236.157)

    Interface: 127.0.0.1
    Interface: 192.168.1.222


DNS ERROR - none of the MX records for agl.net
resolve to this host
It is suggested that the MX record resolve to this host
Re-Enter domain name? [Yes] no
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@agl.net                 
******* +Admin Password                        UNSET                         
        +Anti-virus quarantine user:           virus-quarantine.jki2szwhg@agl.net
        +Enable automated spam training:       yes                           
        +Spam training user:                   spam.zasciylthp@agl.net       
        +Non-spam(Ham) training user:          ham.rjyinlxr@agl.net          
        +SMTP host:                            mail.agl.net                  
        +Web server HTTP port:                 8080                          
        +Web server HTTPS port:                8443                          
        +Web server mode:                      https                         
        +IMAP server port:                     7143                          
        +IMAP server SSL port:                 7993                          
        +POP server port:                      7110                          
        +POP server SSL port:                  7995                          
        +Use spell check server:               yes                           
        +Spell server URL:                     http://mail.agl.net:7780/aspell.php
        +Enable version update checks:         TRUE                          
        +Enable version update notifications:  TRUE                          
        +Version update notification email:    admin@agl.net                 
        +Version update source email:          admin@agl.net                 
        +Install mailstore (service webapp):   yes                           
        +Install UI (zimbra,zimbraAdmin webapps): yes                           

   7) zimbra-spell:                            Enabled                       
   8) zimbra-proxy:                            Enabled                       
   9) Default Class of Service Configuration:                                
   s) Save config to file                                                    
   x) Expand menu                                                            
   q) Quit                                    

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


Common configuration

   1) Hostname:                                mail.agl.net                  
   2) Ldap master host:                        mail.agl.net                  
   3) Ldap port:                               389                           
   4) Ldap Admin password:                     set                           
   5) Store ephemeral attributes outside Ldap: no                            
   6) Secure interprocess communications:      yes                           
   7) TimeZone:                                America/Los_Angeles           
   8) IP Mode:                                 ipv4                          
   9) Default SSL digest:                      sha256                        

Select, or 'r' for previous menu [r] 7

 
1 Africa/Algiers
2 Africa/Cairo
3 Africa/Casablanca
4 Africa/Harare
5 Africa/Khartoum
6 Africa/Monrovia
7 Africa/Nairobi
8 Africa/Sao_Tome
9 Africa/Tripoli
10 Africa/Windhoek
11 America/Adak
12 America/Anchorage
13 America/Araguaina
14 America/Argentina/Buenos_Aires
15 America/Asuncion
16 America/Bahia
17 America/Bogota
18 America/Cancun
19 America/Caracas
20 America/Cayenne
21 America/Chicago
22 America/Chihuahua
23 America/Cuiaba
24 America/Denver
25 America/Fort_Nelson
26 America/Godthab
27 America/Grand_Turk
28 America/Guatemala
29 America/Guyana
30 America/Halifax
31 America/Havana
32 America/Indiana/Indianapolis
33 America/Los_Angeles
34 America/Mexico_City
35 America/Miquelon
36 America/Montevideo
37 America/New_York
38 America/Phoenix
39 America/Port-au-Prince
40 America/Punta_Arenas
41 America/Regina
42 America/Santiago
43 America/Sao_Paulo
44 America/St_Johns
45 America/Tijuana
46 Asia/Almaty
47 Asia/Amman
48 Asia/Baghdad
49 Asia/Baku
50 Asia/Bangkok
51 Asia/Barnaul
52 Asia/Beirut
53 Asia/Chita
54 Asia/Colombo
55 Asia/Damascus
56 Asia/Dhaka
57 Asia/Gaza
58 Asia/Hong_Kong
59 Asia/Hovd
60 Asia/Irkutsk
61 Asia/Jerusalem
62 Asia/Kabul
63 Asia/Kamchatka
64 Asia/Karachi
65 Asia/Kathmandu
66 Asia/Kolkata
67 Asia/Krasnoyarsk
68 Asia/Kuala_Lumpur
69 Asia/Kuwait
70 Asia/Magadan
71 Asia/Muscat
72 Asia/Novosibirsk
73 Asia/Omsk
74 Asia/Pyongyang
75 Asia/Qyzylorda
76 Asia/Sakhalin
77 Asia/Seoul
78 Asia/Singapore
79 Asia/Srednekolymsk
80 Asia/Taipei
81 Asia/Tashkent
82 Asia/Tbilisi
83 Asia/Tehran
84 Asia/Tokyo
85 Asia/Tomsk
86 Asia/Ulaanbaatar
87 Asia/Vladivostok
88 Asia/Yakutsk
89 Asia/Yangon
90 Asia/Yekaterinburg
91 Asia/Yerevan
92 Atlantic/Azores
93 Atlantic/Cape_Verde
94 Atlantic/South_Georgia
95 Australia/Adelaide
96 Australia/Brisbane
97 Australia/Darwin
98 Australia/Eucla
99 Australia/Hobart
100 Australia/Lord_Howe
101 Australia/Perth
102 Australia/Sydney
103 Etc/GMT+12
104 Europe/Astrakhan
105 Europe/Athens
106 Europe/Belgrade
107 Europe/Berlin
108 Europe/Brussels
109 Europe/Bucharest
110 Europe/Chisinau
111 Europe/Helsinki
112 Europe/Istanbul
113 Europe/Kaliningrad
114 Europe/London
115 Europe/Minsk
116 Europe/Moscow
117 Europe/Samara
118 Europe/Saratov
119 Europe/Volgograd
120 Europe/Warsaw
121 Indian/Mauritius
122 Pacific/Apia
123 Pacific/Auckland
124 Pacific/Bougainville
125 Pacific/Chatham
126 Pacific/Easter
127 Pacific/Fiji
128 Pacific/Guadalcanal
129 Pacific/Guam
130 Pacific/Honolulu
131 Pacific/Kiritimati
132 Pacific/Marquesas
133 Pacific/Midway
134 Pacific/Norfolk
135 Pacific/Tongatapu
136 UTC
Enter the number for the local timezone: [33] 50

Common configuration

   1) Hostname:                                mail.agl.net                  
   2) Ldap master host:                        mail.agl.net                  
   3) Ldap port:                               389                           
   4) Ldap Admin password:                     set                           
   5) Store ephemeral attributes outside Ldap: no                            
   6) Secure interprocess communications:      yes                           
   7) TimeZone:                                Asia/Bangkok                  
   8) IP Mode:                                 ipv4                          
   9) Default SSL digest:                      sha256                        

Select, or 'r' for previous menu [r] r

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@agl.net                 
******* +Admin Password                        UNSET                         
        +Anti-virus quarantine user:           virus-quarantine.jki2szwhg@agl.net
        +Enable automated spam training:       yes                           
        +Spam training user:                   spam.zasciylthp@agl.net       
        +Non-spam(Ham) training user:          ham.rjyinlxr@agl.net          
        +SMTP host:                            mail.agl.net                  
        +Web server HTTP port:                 8080                          
        +Web server HTTPS port:                8443                          
        +Web server mode:                      https                         
        +IMAP server port:                     7143                          
        +IMAP server SSL port:                 7993                          
        +POP server port:                      7110                          
        +POP server SSL port:                  7995                          
        +Use spell check server:               yes                           
        +Spell server URL:                     http://mail.agl.net:7780/aspell.php
        +Enable version update checks:         TRUE                          
        +Enable version update notifications:  TRUE                          
        +Version update notification email:    admin@agl.net                 
        +Version update source email:          admin@agl.net                 
        +Install mailstore (service webapp):   yes                           
        +Install UI (zimbra,zimbraAdmin webapps): yes                           

   7) zimbra-spell:                            Enabled                       
   8) zimbra-proxy:                            Enabled                       
   9) Default Class of Service Configuration:                                
   s) Save config to file                                                    
   x) Expand menu                                                            
   q) Quit                                    

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


Store configuration

   1) Status:                                  Enabled                       
   2) Create Admin User:                       yes                           
   3) Admin user to create:                    admin@agl.net                 
** 4) Admin Password                           UNSET                         
   5) Anti-virus quarantine user:              virus-quarantine.jki2szwhg@agl.net
   6) Enable automated spam training:          yes                           
   7) Spam training user:                      spam.zasciylthp@agl.net       
   8) Non-spam(Ham) training user:             ham.rjyinlxr@agl.net          
   9) SMTP host:                               mail.agl.net                  
  10) Web server HTTP port:                    8080                          
  11) Web server HTTPS port:                   8443                          
  12) Web server mode:                         https                         
  13) IMAP server port:                        7143                          
  14) IMAP server SSL port:                    7993                          
  15) POP server port:                         7110                          
  16) POP server SSL port:                     7995                          
  17) Use spell check server:                  yes                           
  18) Spell server URL:                        http://mail.agl.net:7780/aspell.php
  19) Enable version update checks:            TRUE                          
  20) Enable version update notifications:     TRUE                          
  21) Version update notification email:       admin@agl.net                 
  22) Version update source email:             admin@agl.net                 
  23) Install mailstore (service webapp):      yes                           
  24) Install UI (zimbra,zimbraAdmin webapps): yes                           

Select, or 'r' for previous menu [r] 4

Password for admin@agl.net (min 6 characters): [kkwRahkxw] P@ssw0rd

Store configuration

   1) Status:                                  Enabled                       
   2) Create Admin User:                       yes                           
   3) Admin user to create:                    admin@agl.net                 
   4) Admin Password                           set                           
   5) Anti-virus quarantine user:              virus-quarantine.jki2szwhg@agl.net
   6) Enable automated spam training:          yes                           
   7) Spam training user:                      spam.zasciylthp@agl.net       
   8) Non-spam(Ham) training user:             ham.rjyinlxr@agl.net          
   9) SMTP host:                               mail.agl.net                  
  10) Web server HTTP port:                    8080                          
  11) Web server HTTPS port:                   8443                          
  12) Web server mode:                         https                         
  13) IMAP server port:                        7143                          
  14) IMAP server SSL port:                    7993                          
  15) POP server port:                         7110                          
  16) POP server SSL port:                     7995                          
  17) Use spell check server:                  yes                           
  18) Spell server URL:                        http://mail.agl.net:7780/aspell.php
  19) Enable version update checks:            TRUE                          
  20) Enable version update notifications:     TRUE                          
  21) Version update notification email:       admin@agl.net                 
  22) Version update source email:             admin@agl.net                 
  23) Install mailstore (service webapp):      yes                           
  24) Install UI (zimbra,zimbraAdmin webapps): yes                           

Select, or 'r' for previous menu [r] r

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                       
   7) zimbra-spell:                            Enabled                       
   8) zimbra-proxy:                            Enabled                       
   9) Default Class of Service Configuration:                                
   s) Save config to file                                                    
   x) Expand menu                                                            
   q) Quit                                    

*** CONFIGURATION COMPLETE - press 'a' to apply
Select from menu, or press 'a' to apply config (? - help) a
Save configuration data to a file? [Yes] yes
Save config in file: [/opt/zimbra/config.22090]
Saving config in /opt/zimbra/config.22090...done.
The system will be modified - continue? [No] yes
Operations logged to /tmp/zmsetup.20221224-143746.log
Setting local config values...done.
Initializing core config...Setting up CA...done.
Deploying CA to /opt/zimbra/conf/ca ...done.
Creating SSL zimbra-store certificate...done.
Creating new zimbra-ldap SSL certificate...done.
Creating new zimbra-mta SSL certificate...done.
Creating new zimbra-proxy SSL certificate...done.
Installing mailboxd SSL certificates...done.
Installing MTA SSL certificates...done.
Installing LDAP SSL certificate...done.
Installing Proxy SSL certificate...done.
Initializing ldap...done.
Setting replication password...done.
Setting Postfix password...done.
Setting amavis password...done.
Setting nginx password...done.
Setting BES searcher password...done.
Creating server entry for mail.agl.net...done.
Setting Zimbra IP Mode...done.
Saving CA in ldap...done.
Saving SSL Certificate in ldap...done.
Setting spell check URL...done.
Setting service ports on mail.agl.net...done.
Setting zimbraFeatureTasksEnabled=TRUE...done.
Setting zimbraFeatureBriefcasesEnabled=TRUE...done.
Checking current setting of zimbraReverseProxyAvailableLookupTargets
Querying LDAP for other mailstores
Searching LDAP for reverseProxyLookupTargets...done.
Adding mail.agl.net to zimbraReverseProxyAvailableLookupTargets
Updating zimbraLDAPSchemaVersion to version '1537783098'
Setting TimeZone Preference...done.
Disabling strict server name enforcement on mail.agl.net...done.
Initializing mta config...done.
Setting services on mail.agl.net...done.
Adding mail.agl.net to zimbraMailHostPool in default COS...done.
Creating domain agl.net...done.
Setting default domain name...done.
Creating domain agl.net...already exists.
Creating admin account admin@agl.net...done.
Creating root alias...done.
Creating postmaster alias...done.
Creating user spam.zasciylthp@agl.net...done.
Creating user ham.rjyinlxr@agl.net...done.
Creating user virus-quarantine.jki2szwhg@agl.net...done.
Setting spam training and Anti-virus quarantine accounts...done.
Initializing store sql database...done.
Setting zimbraSmtpHostname for mail.agl.net...done.
Configuring SNMP...done.
Setting up syslog.conf...done.
Starting servers...done.
Installing common zimlets...
    com_zimbra_adminversioncheck...done.
    com_zimbra_attachcontacts...done.
    com_zimbra_attachmail...done.
    com_zimbra_bulkprovision...done.
    com_zimbra_cert_manager...done.
    com_zimbra_clientuploader...done.
    com_zimbra_date...done.
    com_zimbra_email...done.
    com_zimbra_mailarchive...done.
    com_zimbra_phone...done.
    com_zimbra_proxy_config...done.
    com_zimbra_srchhighlighter...done.
    com_zimbra_tooltip...done.
    com_zimbra_url...done.
    com_zimbra_viewmail...done.
    com_zimbra_webex...done.
    com_zimbra_ymemoticons...done.
    com_zextras_drive_open...done.
    com_zextras_chat_open...done.
Finished installing common zimlets.
Restarting mailboxd...done.
Creating galsync account for default domain...done.

You have the option of notifying Zimbra of your installation.
This helps us to track the uptake of the Zimbra Collaboration Server.
The only information that will be transmitted is:
    The VERSION of zcs installed (8.8.12_GA_3794_RHEL7_64)
    The ADMIN EMAIL ADDRESS created (admin@agl.net)

Notify Zimbra of your installation? [Yes]
Notifying Zimbra of installation via http://www.zimbra.com/cgi-bin/notify.cgi?VER=8.8.12_GA_3794_RHEL7_64&MAIL=admin@agl.net

ERROR: Notification failed
Checking if the NG started running...done.
Setting up zimbra crontab...done.

Moving /tmp/zmsetup.20221224-143746.log to /opt/zimbra/log

Configuration complete - press return to exit   
 

firewall-cmd --add-service={http,https,smtp,smtps,imap,imaps,pop3,pop3s} --permanent

firewall-cmd --add-port 7071/tcp --permanent

firewall-cmd -add-port 8443/tcp --permanent

firewall-cmd --reload


Access from web browser

https://IP ADDRESS:7071 

 

 

Watch The Video




Comments

Popular posts from this blog

How to Install Zabbix 6.0 LTS on Ubuntu 22

How to Install Nagios 4.4.9 On ubuntu 22.04

How To Install Nextcloud 25 On Red Hat 8.6 With PHP 7.4