zoukankan      html  css  js  c++  java
  • Zabbix 客户端安装教程(第二篇)

    Zabbix 客户端安装教程

    blog地址:http://www.cnblogs.com/caoguo

    [root@localhost ~]# yum install -y gcc make
    [root@localhost ~]# cd /usr/local/src
    [root@localhost ~]# wget http://nchc.dl.sourceforge.net/project/zabbix/ZABBIX%20Latest%20Stable/2.2.10/zabbix-2.2.10.tar.gz
    
    [root@localhost src]# tar zxvf zabbix-2.2.10.tar.gz
    [root@localhost zabbix-2.2.10]# ./configure --prefix=/usr/local/zabbix --enable-agent
    [root@localhost zabbix-2.2.10]# make install
    [root@localhost zabbix-2.2.10]# cp misc/init.d/fedora/core/zabbix_agentd /etc/init.d/
    [root@localhost ~]# ln -s /usr/local/zabbix/etc /etc/zabbix
    [root@localhost ~]# ln -s /usr/local/zabbix/sbin/zabbix_agentd /usr/local/sbin/
    
    [root@localhost ~]# cp /etc/zabbix/zabbix_agentd.conf /etc/zabbix/zabbix_agentd.conf-$(date +%Y%m%d)
    [root@localhost ~]# vi /etc/zabbix/zabbix_agentd.conf
    PidFile=/tmp/zabbix_agentd.pid
    LogFile=/tmp/zabbix_agentd.log
    EnableRemoteCommands=1
    Server=192.168.55.132
    ServerActive=192.168.55.132
    Hostname=Zabbix server
    UnsafeUserParameters=1
    
    [root@localhost ~]# /etc/init.d/zabbix_agentd start

  • 相关阅读:
    Object类的方法简记
    run()和start()调用问题简记
    面向对象设计
    关于JVM的简记
    操作运算符的简记
    jdbc简记
    synchronized的简记
    垃圾回收的一些简记
    java.io.IOException: Stream closed
    Java-文件名、目录名或卷标语法不正确
  • 原文地址:https://www.cnblogs.com/caoguo/p/4971880.html
Copyright © 2011-2022 走看看