Advertisement
Templario_7777

Install Zimbra 8.8.7 GA on Ubuntu 16.04

Mar 13th, 2019
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.90 KB | None | 0 0
  1. VBOX 6.0.4
  2.  
  3. Pre-Requisites:
  4.  
  5. Ubuntu Server 16.04
  6. Open SSHServer
  7.  
  8. HDD 51.2GB 53.7GB (LVM)
  9. RAM 8GB
  10.  
  11. +++++++++++++++++++++++++++++
  12. sudo su
  13.  
  14. nano /etc/network/interfaces
  15.     *****************************
  16.     iface eth0 inet static
  17.     address 192.168.1.252
  18.     netmask 255.255.255.0
  19.     gateway 192.168.1.1
  20.     dns-nameservers 127.0.0.1
  21.     dns-nameservers 8.8.8.8
  22.     *****************************
  23.  
  24. nano /etc/resolv.conf
  25.     ************************
  26.     nameserver 8.8.8.8
  27.     ************************
  28.  
  29. nano /etc/hosts
  30. *************************************************
  31. 127.0.0.1       localhost.localdomain   localhost
  32. 192.168.1.252   zcs886.example.com     zcs886
  33. *************************************************
  34.  
  35. reboot
  36. sudo apt install dnsmasq
  37.  
  38. SOLUTION ERROR
  39. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  40. perl: warning: Setting locale failed.
  41. perl: warning: Please check that your locale settings:
  42.     LANGUAGE = (unset),
  43.     LC_ALL = (unset),
  44.     LANG = "en_US.utf8"
  45.     are supported and installed on your system.
  46. perl: warning: Falling back to the standard locale ("C").
  47. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  48.  
  49. locale-gen en_US.UTF-8
  50.  
  51. export LANGUAGE=en_US.UTF-8
  52. export LANG=en_US.UTF-8
  53. export LC_ALL=en_US.UTF-8
  54. locale-gen en_US.UTF-8
  55.  
  56. dpkg-reconfigure locales
  57.  
  58. nano /etc/dnsmasq.conf
  59.     ******************************************
  60.     server=8.8.8.8
  61.     listen-address=127.0.0.1
  62.     domain=example.com
  63.     mx-host=example.com,zcs886.example.com,0
  64.     address=/zcs886.example.com/192.168.1.252
  65.     *******************************************
  66.  
  67. TEST DNS CONFIGURATION
  68.  
  69. dig mx example.com
  70. dig zcs.example.com
  71.  
  72.  
  73. ZIMBRA LOCAL REPOSITORY CONFIG
  74.  
  75. apt install python-pip
  76. pip install awscli
  77.  
  78.  
  79.  
  80.  
  81. wget https://files.zimbra.com/downloads/8.8.7_GA/zcs-8.8.7_GA_1964.UBUNTU16_64.20180223145016.tgz
  82. tar -xvf zcs-8.8.7_GA_1964.UBUNTU16_64.20180223145016.tgz
  83. cd zcs-8.8.7_GA_1964.UBUNTU16_64.20180223145016
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement