Installation of Zabbix on CentOS 6.3

Here is my simple steps to Install Zabbix on CentOS machine. 1. yum install zlib-devel mysql-devel glibc-devel curl-devel gcc automake mysql libidn-devel openssl-devel net-snmp-devel rpm-devel OpenIPMI-devel   install repo rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm yum –enablerepo=epel install iksemel iksemel-devel download zabbix installation file from www.zabbix.com/download or wget http://downloads.sourceforge.net/project/zabbix/ZABBIX%20Latest%20Stable/1.8.1/zabbix-1.8.1.tar.gz?use_mirror=freefr cd zabbix.1.2.3 ./configure –enable-server –with-mysql –with-net-snmp –with-jabber –with-libcurl –with-openipmi … Read more

Rsync over SSH

User of rsync command rsync -Pzarve (P-progress, z-compress, a-archive, r-recursive, v-verbose, e-method) ssh -p (port) -i (ssh key location) /local/dir/ user@hostname:/remote/dir/if you are using rsa key then do rsync -Pzarve "ssh -i /location/rsa_key -p 1234" /source /destination #In this way you have to type password every time you do rsync, if you do not want … Read more