nginx实时监视访问状态(ngxtop)
作者:网络转载 发布时间:[ 2014/7/22 14:19:36 ] 推荐标签:nginx 性能测试
ngxtop
3.2 访问量前十的IP
# ngxtop -c /usr/local/nginx-1.5.2/conf/nginx.conf top remote_addr
ngxtop
4. 注意事项 4.1 ngxtop单条命令无法执行
# ngxtop
Error: Access log file or format was not set and nginx
config file cannot be detected. Perhaps nginx is not in your PATH?
意识说nginx执行文件要加到PATH路径中, 方法一:软连接
# ln -s /usr/local/nginx-1.5.2/sbin/nginx /sbin/
方法二:修改环境变量
# vim /etc/profile
export PATH=$PATH:/usr/local/nginx-1.5.2/sbin
# source /etc/profile
方法三:指定配置文件
# ngxtop -c /usr/local/nginx-1.5.2/conf/nginx.conf
4.2 虚拟主机配置文件必须在nginx.conf主配置中 一般情况下,我们会将虚拟主机单独写到一个配置文件中,然后nginx.conf做个include。例如我们站点www.ttlsa.com 配置文件:/usr/local/nginx-1.5.2/conf/vhost/www.ttlsa.com.conf 再nginx.conf的http段中添加include vhost/*.conf 这种情况下ngxtop不支持,必须要保证所有配置都在nginx.conf中才行。不知道是否我哪里理解不对,如果是的话,知道的兄弟留言告知。本人在此感激不尽。 5. 结束 ngxtop非常实用,值得推荐。 项目地址:https://github.com/lebinh/ngxtop
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11