服务器系统为centos7
首先需要知晓系统的对外的架构
一般架构:
1.域名--->云服务器(ECS)
2.域名--->CDN--->云服务器(OSS)
3.域名--->CDN--->云服务器ECS+数据库RDS+缓存redis
4.域名--->CDN--->负载均衡--->云服务器ECS+数据库RDS(主从)+缓存Redis
5.域名--->CDN-->WAF防火墙--->负载均衡--->云服务器ECS+数据库RDS(主从)+缓存Redis
再根据实际情况出现的问题,一步步排查。
首先发现问题,及时确定哪个服务出现问题,以便方便快速定位问题。查找对应的域名和设备
【阿里云】尊敬的***,云监控-云数据库RDS版<华南1(深圳)-*****-只读>于<09:54>发生报警,CPU使用率(91.88>=80),持续时间4分钟
客服、市场同事等钉钉、电话报告出现的问题
域名是否解析到源站
登录阿里云CDN后台查看相应流量
检查负载均衡是否正常运行,是否流量异常
ECS服务器负载是否正常、cpu、内存负载是否过高,硬盘使用率是否达到100%等
redis服务器负载是否正常、内存使用率如何
数据库连接数是否正常
列出当前用户的所有连接信息;
show full processlist;
杀进程,时长消耗太长的sql进程
select concat('kill ', id, ';') from information_schema.processlist where command != 'Sleep' and time > 2*60 order by time desc;
让将sql语句发给后端研发分析
查看负载、CPU、内存、上线时间、高资源进程
# top
安装: yum -y install htop
# htop
查看top服务器负载,内存消耗,df -h查看硬盘
top
df
如果有nginx日志,进入nginx日志目录
按照日志大小排列
判断日志访问、相应时长,url等
cd /data/wwwroot/log
ll -Srh
tail -f XXX.XXX.COM-access.log
分析日志,找出最多的IP日志、最多的URL等
GoAccess 、ELK后台查看日志
df -h
IOStat -x -k 3 3
avg-cpu: %user %nice %system %iowait %steal %idle
3.70 0.00 2.25 0.41 0.00 93.64
Device: rrqm/s wrqm/s r/s w/s rkB/s wkB/s avgrq-sz avgqu-sz await r_await w_await svctm %util
vda 0.01 0.83 0.30 1.48 11.34 12.13 26.30 0.01 6.15 7.41 5.89 0.24 0.04
vdb 0.00 0.17 0.02 0.28 0.08 2.75 19.15 0.00 3.22 2.01 3.29 0.26 0.01
vdc 0.10 0.84 3.09 0.56 105.22 20.57 68.94 0.02 7.96 3.29 33.74 1.33 0.49
如果发现当前磁盘忙碌,则查看是哪个 PID 在忙碌:
安装 yum install -y iotop
# iotop -o -P -k -d 5
#.NETstat -tunpl
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:62920 0.0.0.0:* LISTEN 29177/vsftpd
tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN 4393/httpd
tcp 0 0 0.0.0.0:7300 0.0.0.0:* LISTEN 4697/php-fpm: maste
安装 yum install lsof
lsof -p PID
lsof -p 29177
lsof -p 4697
tail -400f /var/log/messages
tail -f /var/log/messages
tail -n100 /var/log/messages
head -n100 /var/log/messages
pstree -a >> /root/pstree.log
ping www.XXX.com
安装: yum install -y traceroute
traceroute www.baidu.com
检查慢查询日志,可能是慢查询引起负载高,根据配置文件查看存放位置:log_slow_queries
升级系统cpu、内存、硬盘,
优化架构增加主从,一主多从等。
show full processlist;
查看设置的最大连接数
show variables like 'max_connections';
重新设置最大连接数
set GLOBAL max_connections=300
如果有一些异常访问,可以加入配合阿里云的WAF。
cat www.XXXX.com-access.log |awk '{print $5}'| awk -F":" '{print $NF}' |sort|uniq -c|sort -nr|head -10
cat www.XXX.com-access.log | awk '{print $10}' | sort | uniq -c | sort -nr | head -n 10
cat www.XXX.com-access.log | sort -nr | head -n 10
cat www.XXX.com-access.log | awk -F"from:" '{print $NF}' |sort|uniq -c|sort -nr|head -10
封IP,查看特定的referer来源地址
封IP段
/sbin/iptables -I INPUT -s 61.37.80.0/24 -j DROP
#屏蔽单个IP的命令是
deny 123.45.6.7
#封整个段即从123.0.0.1到123.255.255.254的命令
deny 123.0.0.0/8
if ($http_user_agent ~* (wget|curl|Firefox) ) {
return 404;
}
rewrite ^/accounts/+$str+ http://127.0.0.1/ redirect;
location / {
if ($http_user_agent ~ 'bingbot/2.0|MJ12bot/v1.4.2|Spider/3.0|YoudaoBot|Tomato|Gecko/20100315'){
return 403;
}
}
valid_referers none blocked *.XXX.com server_names ~.google. ~.baidu.;
if ($invalid_referer) {
# return 403;
rewrite ^/ http://www.XXX.com/daoling.png;
}
if ($host = 'localhost') {
return 403;
}
if ($http_user_agent ~ ^$){
return 403;
}
if ($http_x_forwarded_for ~ ^$){
return 402;
}