博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linxu最最使用命令
阅读量:6758 次
发布时间:2019-06-26

本文共 2076 字,大约阅读时间需要 6 分钟。

#查看占用内存最多的进程,前五名[root@09-01 test]#  ps -aux | sort -k4nr | head -5Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.8/FAQmysql    27023  0.7 18.6 5174468 1504520 ?     Sl   Oct19 152:41 /usr/sbin/mysqld --defaults-file=/data/mysql/3306/my.cnf --basedir=/usr --datadir=/data/mysql/3306/data --plugin-dir=/usr/lib64/mysql/plugin --user=mysql --log-error=/data/mysql/3306/mysql_error.log --open-files-limit=3000 --pid-file=/data/mysql/3306/mysql3306.pid --socket=/tmp/mysql3306.sock --port=3306www      22208  0.3  0.7 506424 58756 ?        S    12:24   0:29 php-fpm: pool wwwwww      22209  0.3  0.7 506036 58472 ?        S    12:24   0:36 php-fpm: pool wwwwww      22210  0.2  0.7 505404 60256 ?        S    12:24   0:29 php-fpm: pool wwwwww      22212  0.3  0.7 508276 62628 ?        S    12:24   0:33 php-fpm: pool www#查看进程占用cpu最多的进程[root@09-01 test]#  ps -aux | sort -k3nr | head -5Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.8/FAQroot     25549 99.2  0.0  15292  1464 ?        R    Oct10 34449:32 topmysql    27023  0.7 18.6 5174468 1504520 ?     Sl   Oct19 152:44 /usr/sbin/mysqld --defaults-file=/data/mysql/3306/my.cnf --basedir=/usr --datadir=/data/mysql/3306/data --plugin-dir=/usr/lib64/mysql/plugin --user=mysql --log-error=/data/mysql/3306/mysql_error.log --open-files-limit=3000 --pid-file=/data/mysql/3306/mysql3306.pid --socket=/tmp/mysql3306.sock --port=3306www      22209  0.3  0.7 506036 58480 ?        S    12:24   0:36 php-fpm: pool wwwwww      22212  0.3  0.7 508276 62628 ?        S    12:24   0:33 php-fpm: pool wwwwww      22224  0.3  0.6 508036 56228 ?        S    12:24   0:30 php-fpm: pool www#TCP状态(连接状态数量统计):[root@166087 data]#    netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}'ESTABLISHED 7TIME_WAIT 2#分析访问日志哪个URL访问最多,排序显示cat access.log | awk  '{print $7}' | grep -v 'images\|js\|upload\|/$\|css' | sort -nr | uniq -c | sort -nr |  more分析访问日志查看哪个IP访问次数最多cat net_access.log | awk '{print $1}' | sort -nr | uniq -c | sort -nr | more

转载于:https://my.oschina.net/web256/blog/525315

你可能感兴趣的文章
Windows Mysql Server重启, log-bin路径配置
查看>>
刘剑锋:友云采助力企业数字化采购的新发展
查看>>
Rainbond 5.0.4 发布,做最好用的云应用操作系统
查看>>
亚马逊宣布与西云数据达成合作,旨在进一步扩大中国业务
查看>>
java nio的基础--缓冲区
查看>>
负载均衡沙龙活动第二期现场问答汇集
查看>>
GBDT原理及利用GBDT构造新的特征-Python实现
查看>>
Android帧缓冲区(Frame Buffer)硬件抽象层(HAL)模块Gralloc的实现原理分析(10)...
查看>>
【Xamarin.Forms】在XAML中传递参数
查看>>
关于数据仓库 — 总体工具介绍
查看>>
最大的错误是不敢犯错
查看>>
跟我学交换机配置(七)
查看>>
makefile 中 $@ $^ % 2015-04-11 18:02:36
查看>>
C#强化系列文章三:实验分析C#中三种计时器使用异同点
查看>>
Linux 进程间通信(一)
查看>>
通用对象池ObjectPool的一种简易设计和实现方案
查看>>
HTTP压缩仍让加密连接处于风险之中
查看>>
乐视阿里达成百亿元销售框架
查看>>
戴尔通过提升大数据分析能力巩固“全数据”战略 帮助企业在现代数据经济中蓬勃发展...
查看>>
⑤Windows Server 8 RemoteFX体验
查看>>