Difference between revisions of "CentOS 7.x Install Zimbra"

From Notes_Wiki
(Created page with "<yambe:breadcrumb>CentOS_7.x_Zimbra_configuration|CentOS 7.x Zimbra configuration</yambe:breadcrumb> =CentOS 7.x Install Zimbra= # Disable Selinux permanently in '<tt>/etc/s...")
 
m
Line 1: Line 1:
<yambe:breadcrumb>CentOS_7.x_Zimbra_configuration|CentOS 7.x Zimbra configuration</yambe:breadcrumb>
<yambe:breadcrumb>CentOS_7.x_Zimbra_configuration|Zimbra configuration</yambe:breadcrumb>
=CentOS 7.x Install Zimbra=
=CentOS 7.x Install Zimbra=


*[[CentOS 7.x Install Zimbra on Physical server or VM]]
*[[CentOS 7.x Install Zimbra on lxc container]]
*[[CentOS 7.x Install Zimbra on AWS lightsail instance]]


# Disable Selinux permanently in '<tt>/etc/selinux/config</tt>'.
#:<pre>
#::SELINUX=disabled
#:</pre>
# Disable SELinux for current run
#:<pre>
#::setenforce 0
#:</pre>
# Allow required ports in Firewall
#:<pre>
#::firewall-cmd --permanent --add-port=&lt;port-number&gt;/tcp
#:</pre>
#:For Zimbra ports refer https://wiki.zimbra.com/wiki/Firewall_Configuration    Apart from 389 (LDAP), 7073 (Soap Auth) and 7025 (LMTP) most others are required.  Since TLS is used instead of SSL - port 25, 110, 143, etc. should also be allowed.
# Reload firewall for changes to take effect
#:<pre>
#::firewall-cmd --reload
#:</pre>
# Configure hostname in '<tt>/etc/hosts</tt>'
#:<pre>
#::192.168.1.X zimbra.sbarjatiya.com zimbra
#:</pre>
# Stop any MTA services installed in the server
#:<pre>
#::systemctl stop postfix
#::systemctl disable postfix
#::systemctl stop sendmail
#::systemctl disable sendmail
#:</pre>
# Install required packages
#:<pre>
#::yum install perl perl-core ntp nmap sudo libidn gmp libaio libstdc++ unzip sysstat sqlite -y
#:</pre>
# If you want incoming emails to work properly, then setup correct MX records for the domain to point to this server.
# Download Zimbra latest version from official web site
#:<pre>
#::https://www.zimbra.com/downloads/
#:</pre>
# Extract the downloaded file
#:<pre>
#::tar xzf zcs-8.7.6.X.X.X
#:</pre>
# Start the installation
#:<pre>
#::cd zcs-8.7.6.X.X.X
#::./install.sh --platform-override
#:</pre>
# Use below inputs for using Zimbra installation wizard
## Enter 'Y' for agreeing with terms of service
## Enter 'Y' for agreeing with license agreement
## Enter 'Y' for installing Zimbra-ldap, Zimbra-logger, Zimbra-mta, Zimbra-snmp, Zimbra-store, Zimbra-apache, Zimbra spell, chat, drive, etc.  You can consider using 'N' for installing Zimbra-memcached and Zimbra-proxy
## Enter 'Y' for system will be modified warning. The setup should now install various rpms for Zimbra.
## If FQDN is different from domain name (eg FQDN zimbra.example.com, domain example.com) then Zimbra will give error that MX record cannot be resolved. Enter 'Yes' for change domain name.
## Enter new correct domain name such as example.com
## This would bring setup to Zimbra configuration menu. Only admin password needs to be configured rest all can be left as it is for basic setup. To configure admin password use menu option and set appropriate admin password.
## Press 'r' to return to previous menu and then 'a' for applying configuration
## Enter 'Yes' for saving configuration to a file
## Press enter for file path option and continue with whatever file name has been suggested
## Enter 'Yes' for system will be modified warning
## Now setup should take really long time for various installations and configurations
## Enter 'No' for notify Zimbra of installation for test machines. In case of production machines you can optionally enter 'Yes'.
## Press return to exit on 'Press return to exit' message :)
# Check status of Zimbra services which take a few minutes to start
#:<pre>
#::su - zimbra
#::zmcontrol status
#:</pre>
# Access admin panel via browser
#:<pre>
#::https://zimbra.sbarjatiya.com:7071
#:</pre>
* Reference url: https://www.unixmen.com/install-zimbra-collaboration-suite-8-6-0-centos-7/


 
<yambe:breadcrumb>CentOS_7.x_Zimbra_configuration|Zimbra configuration</yambe:breadcrumb>
 
<yambe:breadcrumb>CentOS_7.x_Zimbra_configuration|CentOS 7.x Zimbra configuration</yambe:breadcrumb>

Revision as of 02:45, 14 February 2019

<yambe:breadcrumb>CentOS_7.x_Zimbra_configuration|Zimbra configuration</yambe:breadcrumb>

CentOS 7.x Install Zimbra


<yambe:breadcrumb>CentOS_7.x_Zimbra_configuration|Zimbra configuration</yambe:breadcrumb>