狂欢‰一夜 发表于 2019-1-25 12:04:44

zabbix2.4.6 RPM安装

  系统:centos6.8 x86_64
  软件:zabbix-2.4.6-1.el6.x86_64
  装yum源:
  # cd /etc/yum.repos.d/
  #rpm -ivh http://repo.zabbix.com/zabbix/2.4/rhel/6/x86_64/zabbix-release-2.4-1.el6.noarch.rpm
Installing Zabbix packages
  # yum install mysql-server
  # yum install mysql-devel
  # /etc/init.d/mysqld start
  # yum install zabbix-server-mysql zabbix-web-mysql
  # yum install zabbix-agent#Example for installing Zabbix agent only
Creating initial database
  mysql> create database zabbix character set utf8 collate utf8_bin;
  mysql> grant all privileges on zabbix.* to zabbix@localhost identified by '123456';
  mysql> flush privileges;
  # cd /usr/share/doc/zabbix-server-mysql-2.4.5/create/
   # mysql -uzabbix-p123456 < schema.sql
   # mysql -uzabbix-p123456 zabbix < schema.sql
  # mysql -uzabbix-p123456 zabbix < images.sql
  # mysql -uzabbix-p123456 zabbix < data.sql
Starting Zabbix server process
  1.Edit database configuration in zabbix_server.conf
# vi /etc/zabbix/zabbix_server.conf
DBHost=localhost
DBName=zabbix
DBUser=zabbix
DBPassword=123456
  2. Start Zabbix server process.
  # /etc/init.d/zabbix-server start
Editing PHP configuration for Zabbix frontend
  # vi /etc/httpd/conf.d/zabbix.conf
      php_value max_execution_time 300
      php_value memory_limit 128M
      php_value post_max_size 16M
      php_value upload_max_filesize 2M
      php_value max_input_time 300
      # php_value date.timezone Europe/Riga
  
  # vi /etc/php.ini
  date.timezone = Asia/Chongqing
  
  # /etc/init.d/httpd restart
   注:
  默认用户名/密码:Admin/zabbix
  
http://s3.运维网.com/wyfs02/M00/74/83/wKiom1YfY9jjZdBoAAL8JBuhfMU401.jpg
http://s3.运维网.com/wyfs02/M00/74/80/wKioL1YfY_qzNrsqAAJ4c7h6ZSw590.jpg
http://s3.运维网.com/wyfs02/M01/74/83/wKiom1YfY9nAekDGAAJlFcVKOkY372.jpg
http://s3.运维网.com/wyfs02/M02/74/80/wKioL1YfY_vjRjhaAAIXauUaOS4914.jpg
http://s3.运维网.com/wyfs02/M01/74/80/wKioL1YfY_uDJHjLAAJ1hi_oO2w100.jpg
http://s3.运维网.com/wyfs02/M02/74/83/wKiom1YfY9rS33v-AAHEZF52Rz8204.jpg
http://s3.运维网.com/wyfs02/M02/74/80/wKioL1YfY_2xAOxWAARkeM5QM7g195.jpg
  

  




页: [1]
查看完整版本: zabbix2.4.6 RPM安装