Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Server \ Zabbix monitoring different versions of RAID installation and monitoring and MySQL master-slave monitor     - PHP Performance Analysis and Experiment: Performance Micro Analysis (Programming)

- How to manage Vim plugin (Linux)

- CentOS 7.1 install NTFS-3G (Linux)

- LinSSID: a graphical Wi-Fi scanner under Linux (Linux)

- Django url () function Detailed (Programming)

- RT-11SJ run at ambient PDP-11 MACRO-11 assembly (Programming)

- How to set cache valid time in Apache (Server)

- xargs Detailed description (Linux)

- What is Unikernel? (Linux)

- Two minutes thoroughly so that you understand Android Activity Lifecycle (Programming)

- Make command tutorial (Linux)

- UUID in Java (Programming)

- Analysis RabbitMQ cluster (Server)

- AngularJS application unit testing started (Programming)

- Why did not Oracle privileges can also log in with sysdba (Database)

- MD5 and simple to use (Linux)

- Linux environment SSH login password instead of using the RSA Certificate (Linux)

- OpenSUSE / Linux network configuration (Linux)

- Oracle SQL statement tracking (Database)

- Cool Android realization SVG animation (Programming)

 
         
  Zabbix monitoring different versions of RAID installation and monitoring and MySQL master-slave monitor
     
  Add Date : 2018-11-21      
         
         
         
 

Installation zabbix client
CentOS installation script:
# / bin / bash
cd / usr / local / src
yuminstall wget -y
wget  ! http://repo.zabbix.com/zabbix/2.2/rhel/6/x86_64/zabbix-2.2.0-1.el6.x86_64.rpm
wget   http://repo.zabbix.com/zabbix /2.2/rhel/6/x86_64/zabbix-agent-2.2.0-1.el6.x86_64.rpm
rpm -ivhzabbix-2.2.0-1.el6.x86_64.rpm
rpm -ivhzabbix -agent-2.2.0-1.el6.x86_64.rpm
cd / etc / zabbix
grep '^ Server =' zabbix_agentd.conf | sed -i 's / 127.0.0.1 / xxxx / g 'zabbix_agentd.conf
servicezabbix-agent restart
chkconfig   zabbix-agent on

Ubuntu installation script:!
# / Bin / bash
cd / usr / local / src
wgethttp: //repo.zabbix.com/zabbix/2.2/ubuntu/pool/ main / z / zabbix-release / zabbix-release_2.2-1 + precise_all.debdpkg-i zabbix-release_2.2-1 + precise_all.deb
apt-getupdate
apt-getinstall zabbix-agent - y
cd / etc / zabbix
grep '^ Server =' zabbix_agentd.conf | sed -i 's / 127.0.0.1 / xxxx / g'zabbix_agentd.conf
echo "/ etv / init.d / zabbix-agent "> > /etc/rc.local
 
to give permission to the script and execute the script:
sudo chmod + x   jiaoben.sh
sudo   ./jiaoben.sh
 
Zabbix alarm
script needs to be placed zabbix server script trigger corresponding directory zabbix / share / zabbix / alertscripts /
 
Zabbxi_sms.py use to call the company's SMS gateway:!
# / usr / bin / python
#coding: utf-8
importurllib2
importurllib
importsys
def sendm (phone, subject, content):
  url = 'https: // xxxxxxxxxxxxxx'
  data = urllib.urlencode ({
  "xx": '10004',     # call parameters
        "xxxx": phone,
        "xxxx": content
                         })
    req = urllib2.Request (url, data)    
    res = urllib2.urlopen (req)
print res.read ()
sendm (sys.argv [1] , sys.argv [2], sys.argv [3])   #zabbix calling script will automatically transmit three parameters, account, subject and content
 
use scripts to mail alarms script zabbix_email.sh:
echo "$3" | mail -s $1 $2
 
 
Zabbix custom items
modifications zabbix client zabbit_agentd.conf as:
UnsafeUserParameters = 1   # open active mode zabbix of
UserParameter = http.stat, service httpd status   | grep -c running # define a httpd. the key stat when httpd is running the value is 1, when httpd is not running for 0
 
add items on the corresponding host key value httpd.stat can monitor back to the state of the httpd command
you can also write a script, and add the path to the keys you can
 
Zabbix client fetch key test:
zabbix_agentd -t key
Zabbix server fetch the client's key test:
Zabbix / bin / Zabbix_get -s client ip -k key
 
Note that the custom example:
1: Raid disk custom, you can view MegaCli operation
UserParameter = raid.stat, sudo / usr / bin / MegaCli64 -cfgdsply -aALL | grep "State" | grep -c   "Optimal"
#raid state is a normal state disk 1   0 is not normal
UserParameter = pd.total.disks, sudo / usr / bin / MegaCli64   - cfgdsply -aALL | grep -c "Non coerced Size"
UserParameter = pd.critical.disks, sudo / usr / bin / MegaCli64 -AdpAllInfo   -aALL | grep "Critical Disks" | awk -F: '{print   $ 2} ' 
UserParameter = pd.failed.disks, sudo / usr / bin / MegaCli64 -AdpAllInfo   -aALL | grep "Failed disks" | awk -F:' { print   $ 2} '      number
 
Since MegaCli64 need to use sudo to use, so the script to add sudo, this time also need to zabbix given execution the authority
 
edit / etc / sudoers add:
Defaults: zabbix requiretty
zabbix ALL = (ALL) NOPASSWD: / opt / MegaRAID / MegaCli / MegaCli64

2: mysql master-slave monitor
grant replication client on   * * to 'zabbix' @ 'localhost'; # zabbix account for the authorization
mysql -uzabbix -e 'show slavestatus G'. | grep -E "Slave_IO_Running | Slave_SQL_Running" | awk '{print $ 2}' | grep -c yes
# 2 when the value of time expressed mysql master from a value of 0 is normal when the time indicated is not normal

     
         
         
         
  More:      
 
- MySQL log from the library than the main library (Database)
- Python system default encoding (Programming)
- Python Multithreaded Programming (Programming)
- Linux, modify the fstab file system can not start causing solve one case (Linux)
- Java environment to build a number of issues (Linux)
- Use DB2 federated access Oracle (Database)
- Ubuntu install Eclipse for C / C ++ and related configuration (Linux)
- AngularJS (Programming)
- Linux user groups, file permissions Detailed (Linux)
- Hunk / Hadoop: Performance Best Practices (Server)
- Oracle multi-table query optimization (Database)
- Hadoop 2.0 Detailed Configuration Tutorial (Server)
- Linux console password solution (Programming)
- To install Xen in Ubuntu 12.04 (Linux)
- Vim Getting Started Tutorial (Linux)
- linux server security (Linux)
- Generic mechanism C11 standard (Programming)
- Row-level security and application-level solutions for the new features of PostgreSQL9.5 (Database)
- Nginx request processing (Server)
- Shell Common Command Summary (Programming)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.