Skip to content

Instantly share code, notes, and snippets.

@jordanwesthoff
Last active August 29, 2015 14:22
Show Gist options
  • Save jordanwesthoff/db93d33f8ea3e96d12df to your computer and use it in GitHub Desktop.
Save jordanwesthoff/db93d33f8ea3e96d12df to your computer and use it in GitHub Desktop.
Log of installing Zabbix Server on remote CentOS 6.5 server
### Bringing up ZABBIX Server Install ###
# 1. Add user for zabbix
sudo adduser jordan
sudo adduser jordan
### enter password
# 2. Install Zabbix, and all important dependencies
sudo yum -y install mysql-server php-xml mysql
sudo rpm -ivh http://repo.zabbix.com/zabbix/2.4/rhel/6/x86_64/zabbix-release-2.4-1.el6.noarch.rpm
sudo yum -y install zabbix-server-mysql zabbix-web-mysql
# 3. Start with MySQL
mysql -u root -p
### default is blank password
create database zabbix character set utf8 collate utf8_bin;
grant all privileges on zabbix.* to zabbix@localhost identified by 'password';
quit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment