ntpdate 210.72.145.44
清除系统缓存,空出更多内存free && sync && echo 3 > /proc/sys/vm/drop_caches && free
杀掉僵尸进程kill $(ps -A -ostat,ppid | awk '/[zZ]/ && !a[$2]++ {print $2}')
显示全部arp解析tcpdump 'arp' -e -i eth0 -n -p -t |grep is-ateth0对应要换成你的显步名称
监看本机网卡端口情况tcpdump -n -vv tcp port $1 -i em1em1为对应的网卡名称。
检查本机连接数netstat -nat |awk '{print $6}'|sort|uniq -c|sort -nr
查看tomcat日志中的异常tail -F /var/log/tomcat8/catalina.out |grep -E 'Exception|at' |grep -v WARN这里tomcat8要对应成你的相应版本
删除5天以前的tomcat日志sudo find /var/lib/tomcat8/logs/ -mtime +5 -exec rm {} \;
清空 memcache 缓存以下存成脚本,
#!/bin/sh
#实现通过主机名,端口清相应的memcache缓存
if(($#/dev/null;
#打开host的port 可读写的socket连接,与文件描述符6连接
if(($?!=0));then
echo "open $1 $2 error!";
exit 1;
fi
#如果打开失败,$?返回不为0,终止程序
echo -e "flush_all">&6;
echo -e "quit">&6;
#将HEAD 信息,发送给socket连接
cat> $ip
echo "Modify Completed "
else
echo "Not Modified"
fi
echo "netmask $netmask" >> $ip
echo "Netmask Modify Completed "
echo "network $network" >> $ip
echo "Network Modify Completed "
echo "broadcast $broadcast" >> $ip
echo "Broadcast Modify Completed "
echo "gateway $gateway" >> $ip
echo "Gateway Modify Completed "
echo "Please input hostname:"
read hostname
if [ -n "$hostname" ]; then
echo "$hostname" > $hn
echo "Modify Completed "
else
echo "Default Hostname"
fi
echo "All modification completion"
read -n1 -p "Whether restart network [Y/N]?"
case $REPLY in
Y|y) echo
/etc/init.d/networking restart;;
N|n) echo
echo "Network needs to restart to take effect!!!!!!";;
esac
exit
实时统计nginx日志
使用goaccess软件,可能用apt install goaccess或yum install goaccess安装。
sudo goaccess /var/log/nginx/access.log --log-format='%h %^[%d:%t %^] "%r" %s %b "%R" "%u" "-" "%v"' --date-format='%d/%b/%Y' --time-format='%H:%M:%S'
备份nginx配置文件nginx会频繁修改,改之前最好备份一下:
###################################################################
#######mysqldump###################################################
#!/bin/sh
# -----------------------------
# the directory for story your backup file.
backup_dir="/home/your/backup"
# date format for backup file (dd-mm-yyyy)
time="$(date +"%Y%m%d")"
MKDIR="$(which mkdir)"
RM="$(which rm)"
MV="$(which mv)"
TAR="$(which tar)"
GZIP="$(which gzip)"
#针对不同系统,如果环境变量都有。可以去掉
# check the directory for store backup is writeable
test ! -w $backup_dir && echo "Error: $backup_dir is un-writeable." && exit 0
# the directory for story the newest backup
test ! -d "$backup_dir" && $MKDIR "$backup_dir"
$TAR -zcPf $backup_dir/$HOSTNAME.nginx.$time.tar.gz /etc/nginx
$TAR -zcPf $backup_dir/$HOSTNAME.cron_daily.$time.tar.gz /etc/cron.daily
#delete the oldest backup 30 days ago
find $backup_dir -name "*.gz" -mtime +30 |xargs rm -rf
exit 0;
nginx 自动筛选出访问量过大的ip进行屏避
#!/bin/bash
nginx_home=/etc/nginx
log_path=/var/log/nginx
tail -n10000 $log_path/access.log \
|awk '{print $1,$12}' \
|grep -i -v -E "google|yahoo|baidu|msnbot|FeedSky|sogou" \
| grep -v '223.223.198.231' \
|awk '{print $1}'|sort|uniq -c|sort -rn \
|awk '{if($1>50)print "deny "$2";"}' >>./blockips.conf
sort ./blockips.conf |uniq -u >./blockips_new.conf
mv ./blockips.conf ./blockips_old.conf
mv ./blockips_new.conf ./blockips.conf
cat ./blockips.conf
#service nginx reload
监控各网站首页
#!/bin/sh
RED='\033[0;31m'
GREEN='\033[0;32m'
NC='\033[0m' # No Color
function test_domain {
local domain=$1
status=`curl -s -o /dev/null -I -w "%{http_code}" $domain`
if [ $status -eq '404' ]
then
printf "${domain}${RED} ${status}${NC}\n"
else
printf "$domain$GREEN $status$NC\n"
fi
}
domain_list=$'bixuebihui.cn\nwww.bixuebihui.cn\ndev.bixuebihui.cn\nblog.bixuebihui.cn\nbixuebihui.com\nwww.bixuebihui.com'
while read -r domain; do
# echo "... $domain ..."
test_domain "http://$domain"
test_domain "https://$domain"
done = $min_rows)) {
$orig_query = $query_string;
$query_string =~ s/\d+/XXX/g;
$query_string =~ s/'([^'\\]*(\\.[^'\\]*)*)'/'XXX'/g;
$query_string =~ s/"([^"\\]*(\\.[^"\\]*)*)"/"XXX"/g;
#$query_string =~ s/([\'\"]).+?([\'\"])/$1XXX$2/g;
#$query_string =~ s/\s+/ /g;
#$query_string =~ s/\n+/\n/g;
push @{$queries{$query_string}}, $time;
push @{$queries_rows{$query_string}}, $rows;
$queries_tot{$query_string} += $time;
$queries_orig{$query_string} = $orig_query;
$query_string = '';
}
} else {
if ($new_sql) {
$query_string = $_;
$new_sql = 0;
} else {
$query_string .= $_;
}
}
}
##############################################
# Display Output
##############################################
foreach my $query ( sort { $queries_tot{$b} $queries_tot{$a} } keys %queries_tot ) {
my $total = 0;
my $cnt = 0;
my @seconds = sort { $a $b } @{$queries{$query}};
my @rows = sort { $a $b } @{$queries_rows{$query}};
($total+=$_) for @seconds;
($cnt++) for @seconds;
print "### " . @{$queries{$query}} . " Quer" . ((@{$queries{$query}} > 1)?"ies ":"y ") . "\n";
print "### Total time: " . $total .", Average time: ".($total/$cnt)."\n";
print "### Taking ";
print @seconds > $max_display ? "$seconds[0] to $seconds[-1]" : sec_joiner(\@seconds);
print " seconds to complete\n";
print "### Rows analyzed ";
print @rows > $max_display ? "$rows[0] - $rows[-1]": sec_joiner(\@rows);
print "\n";
print "$query\n";
print $queries_orig{$query}."\n\n";
}
sub sec_joiner {
my ($seconds) = @_;
$string = join(", ", @{$seconds});
$string =~ s/, (\d+)$/ and $1/;
return $string;
}
exit(0);
本机路由表
ip route add 5.6.13.192/26 dev em1 src 5.6.13.218 table 10
ip route add default via 5.6.13.254 table 10
ip route add 5.6.13.192/26 dev em2 src 5.6.13.217 table 20
ip route add default via 5.6.13.254 table 20
ip route add 5.6.13.192/26 dev em1 src 5.6.13.218
ip route add 5.6.13.192/26 dev em2 src 5.6.13.217
ip route add default via 5.6.13.254
ip rule add from 5.6.13.218 table 10
ip rule add from 5.6.13.217 table 20
ip route flush cache
出现异常时,用钉钉dingtalk报警
#!/bin/python
# -*- coding: utf-8 -*-
from flask import Flask
from flask import request
import json
import requests
app = Flask(__name__)
def transform(text):
textMap = json.loads(text)
nodePorturl = 'http://192.168.10.182:3672'
externalURL = textMap['externalURL']
print(externalURL)
links =[]
for alert in textMap['alerts']:
print('-------------')
time = alert['startsAt'] + ' -- ' + alert['endsAt']
generatorURL = alert['generatorURL'];
generatorURL = nodePorturl+generatorURL[generatorURL.index('graph'):]
summary = alert['annotations']['summary']
description = alert['annotations']['description']
status = alert['status']
title = alert['labels']['alertname']
link = {}
link['title'] = title
link['text'] = status + ': ' + description
link['messageUrl'] = generatorURL
link['picUrl'] = ''
links.append(link)
return links
@app.route('/',methods=['POST'])
def send():
if request.method == 'POST':
post_data = request.get_data()
alert_data(post_data)
return "hello"
def alert_data(data):
url = 'https://oapi.dingtalk.com/robot/send?access_token=YOUR_TOKEN'
headers = {'Content-Type': 'application/json'}
for link in transform(data):
send_data = {"msgtype": "link", "link": link}
print(send_data)
r = requests.post(url, data=json.dumps(send_data), headers=headers)
if __name__ == '__main__':
app.run(host='0.0.0.0', port=1111)