Posts

Showing posts from January, 2017

How To Install Zimbra 8.6 on CentOS 6 Part 2

Image
After previously preparation for install Zimbra has been finished , we can install Zimbra right now. First, we can download Zimbra Binary from this link  http://www.zimbra.com/downloads/zimbra-collaboration-open-source or if you are in Indonesia region, you can download at the following link  http://mirror.linux.or.id/zimbra/binary/ . view source print ? 1. cd /opt/ 2. wget -c  https://files.zimbra.com/downloads/8.6.0_GA/zcs-8.6.0_GA_1153.RHEL6_64.20141215151155.tgz After finished download, extract Zimbra, move into folder result of extract and install Zimbra view source print ? 1. tar -zxvf zcs-8.6.0_GA_1153.RHEL6_64.20141215151155.tgz 2. cd   zcs-8.6.0_GA_1153.RHEL6_64.20141215151155 3. sh install .sh type Y if asking license agreement Do you agree with the terms of the software license agreement? [N] Y Select the packages that will be installed Install zimbra-ldap [Y] Y Install zimbra-logger [Y] Y Install zimbra-mta [Y] Y...

Cara Menggunakan VI Editor Linux

Image
Karena ane biasanya menggunakan editor nano di linux, semenjak bergaul sm Trustix jdi ane migrasi juga ke editor VI ini. Pertamanya? Bingung sangat! Berikut cara menggunakan vi editor linux. Mode Vi memiliki dua mode yaitu  mode command , dan  mode insertion . Ketika kita membuka vi, maka pertama kali akan masuk ke mode  command , dimana kursor dapat kita gerak-gerakkan atau bahkan melakukan penghapusan terhadap teks. Mode insertion dimulai ketika memasuki salah satu perintah insertion atau perintah change, yaitu perintah untuk mengedit teks dengan menuliskan huruf demi huruf. Dengan menekan tombol Escape (ESC), maka kita dapat kembali lagi ke mode command. Pada mode command, kebanyakan eksekusi terhadap perintah langsung dilakukan seketika itu juga, kecuali pada perintah yang menggunakan titik dua (colon) harus diakhiri dengan penekanan tombol enter. Daftar Perintah / Command di VI Editor Berikut ini perintah-perintah / daftar command vi yang umum ...

How To Install Zimbra 8.6 on CentOS 6 Part 1

Usually, i am always using SUSE Linux Enterprise Server as operating system for Zimbra Mail Server. But, starting from Zimbra 9.x.x, SLES has been deprecated (end of life) and may be will not supported by Zimbra. Therefore, i attempt to using CentOS as operating system for Zimbra. For easy understanding, this is my information system Domain : imanudin.net Hostname : mail IP Address : 192.168.80.91 Gateway : 192.168.80.11 # Configure Network First, we must configure network on CentOS. Assuming name of your network interface is eth0 1. vi /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0 ONBOOT=yes NM_CONTROLLED=no BOOTPROTO=none IPADDR=192.168.80.91 NETMASK=255.255.255.0 DNS1=192.168.80.91 GATEWAY=192.168.80.11 DNS2=192.168.80.11 DNS3=8.8.8.8 USERCTL=no Restart network service and setup for automatic boot 1. service network restart 2. chkconfig network on # Configure Disable Selinux & Firewall Open file /etc/sysconfig/selinux a...