Linux系统自带的密码生成器——mkpasswd
Linux系统有一个自带的生成密码的命令,这个命令异常强悍,可以帮助我们生成随机密码,要知道,现在的黑客无处不 …
个人运维开发技术博客分享站点
Linux系统有一个自带的生成密码的命令,这个命令异常强悍,可以帮助我们生成随机密码,要知道,现在的黑客无处不 …
将多个SVN从一台Windows服务器, 迁移到Linux系统的过程, 记录一下, 本文的Linux版本为Ce …
Apache的配置是针对原先较低的服务器来配置的,原先的配置显然已经不适合了,所以今天开始研究下Apache配 …
【APACHE的工作方式】 prefork模式(默认) 这个多路处理模块(MPM)实现了一个非线程型的、预派生 …
windows服务器环境下apache内存释放及死机问题解决办法一览 从网上找到两个解决办法先贴在这里,效果后 …
Linux下SVN服务器同时支持Apache的http和svnserve独立服务器两种模式且使用相同的访问权限 …
今天安装memcache 启动服务时出现 error while loading shared librari …
linux 远程拷贝 :scp scp 文件名 root@远程ip:/路径/ 将本地home目录下的test …
linux系统为Centos 64位 第一步:从http://nginx.org/download/上下载相应 …
Zookeeper是一个协调服务,可以用它来作为配置维护、名字服务、分布式部署; 下面,我来分享一下在Linu …
下载并安装Memcache服务器端 服务器端主要是安装memcache服务器端. 下载:http://www. …
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# ngxtop --help ngxtop - ad-hoc query for nginx access log. Usage: ngxtop [options] ngxtop [options] (print|top|avg|sum) <var> ... ngxtop info ngxtop [options] query <query> ... Options: -l <file>, --access-log <file> 需要分析的访问日志 -f <format>, --log-format <format> log_format指令指定的日志格式 [默认: combined] --no-follow ngxtop default behavior is to ignore current lines in log and only watch for new lines as they are written to the access log. Use this flag to tell ngxtop to process the current content of the access log instead. -t <seconds>, --interval <seconds> report interval when running in follow mode [default: 2.0] -g <var>, --group-by <var> 根据变量分组 [默认: request_path] -w <var>, --having <expr> having clause [default: 1] -o <var>, --order-by <var> 排序 [默认: count] -n <number>, --limit <number> 显示的条数 [default: 10] -a <exp> ..., --a <exp> ... add exp (must be aggregation exp: sum, avg, min, max, etc.) into output -v, --verbose 更多的输出 -d, --debug print every line and parsed record -h, --help 当前帮助信息. --version 输出版本信息. 高级选项: -c <file>, --config <file> 运行ngxtop解析nginx配置文件 -i <filter-expression>, --filter <filter-expression> filter in, records satisfied given expression are processed. -p <filter-expression>, --pre-filter <filter-expression> in-filter expression to check in pre-parsing phase. 范例: All examples read nginx config file for access log location and format. If you want to specify the access log file and / or log format, use the -f and -a options. "top" like view of nginx requests $ ngxtop 404前十的请求 $ ngxtop top request_path --filter 'status == 404' 总流量前十的请求 $ ngxtop --order-by 'avg(bytes_sent) * count' 访问量前十的ip地址 $ ngxtop --group-by remote_addr 输出400以上状态吗的请求以及请求来源 $ ngxtop -i 'status >= 400' print request status http_referer Average body bytes sent of 200 responses of requested path begin with 'foo': $ ngxtop avg bytes_sent --filter 'status == 200 and request_path.startswith("foo")' 使用common日志格式分析远程服务器Apache访问日志 $ ssh remote tail -f /var/log/apache2/access.log | ngxtop -f common |
一、查看及管理当前登录用户 1、使用w命令查看登录用户正在使用的进程信息,w命令用于显示已经登录系统的用户的名 …