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     - xCAT install and update software (Linux)

- RabbitMQ Getting Started Tutorial (Linux)

- Linux novice common commands (Linux)

- Security measures under Unix multi-user operating system (Linux)

- Access clipboard content across multiple vim instances in a terminal (Linux)

- Give your photos Instagram style filters plus program in ubuntu (Linux)

- Sqoop data export import command (Database)

- Java input and output common class Scanner (Programming)

- How Ubuntu Snappy Core 2 running on Raspberry Pi (Linux)

- MariaDB 10.1 and MySQL 5.7 in general performance on commodity hardware (Database)

- Fatal NI connect error 12170 error in Alert Log (Database)

- C language binary tree counts words (Programming)

- Install Oracle database error process of [INS-35172] (Database)

- Bash variable expansion modifier (Programming)

- KVM add virtual disks (Linux)

- Bash code injection attacks through a special environment variable (Linux)

- Usage logs Python library (Programming)

- Linux system security configuration (Linux)

- For the FreeBSD install Adobe Flash plug-in (Linux)

- Binding multiple network cards in Linux using command nmcli (Linux)

 
         
  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:      
 
- CentOS 6.6 shortcut command execution (Linux)
- iOS custom keyboard emoji expression (Programming)
- php How to prevent being injected (Linux)
- Ubuntu Apache virtual host configuration (Server)
- Sort search algorithm Java - application examples with recursive dichotomy (Programming)
- To build a private Docker registry (Server)
- The method of CentOS-7.0. The installation and configuration of Tomcat-7 (Server)
- EXP-00091: Exporting questionable statistics Processing Method (Database)
- Java environment to build a number of issues (Linux)
- Getting Started with Linux system to learn: how to install the Shrew Soft IPsec VPN on Linux (Linux)
- Four safety delete files under Linux tools (Linux)
- Use matplotlib scientific drawing in Linux (Linux)
- 5 tips to improve your Linux desktop security (Linux)
- CentOS installation Docker series (Linux)
- Ubuntu Froxlor Server Administration panel installation (Server)
- Reported too many open files Linux solutions (Server)
- ADSL router to defend their own network security methods (Linux)
- Linux command execution order control and pipeline (Linux)
- C language files update in real time (Programming)
- Use small network command to check whether PC Security (Linux)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.