码迷,mamicode.com
首页 >  
搜索关键字:processes    ( 1265个结果
第4章 更多的bash shell命令
Monitoring Programs Peeking at the processes When a program runs on the system, it’s referred to as a process. To examine these processes, you need to ...
分类:系统相关   时间:2016-06-22 21:53:31    阅读次数:224
Nginx配置文件nginx.conf中文详解(总结)
最完整的Nginx配置参数中文说明了。#定义Nginx运行的用户和用户组user www www;#nginx进程数,建议设置为等于CPU总核心数。worker_processes 8;#全局错误日志定义类型,[ debug | info | notice | warn | error | crit ...
分类:其他好文   时间:2016-06-22 14:08:57    阅读次数:174
nginx配置详解
#运行用户user www-data; #启动进程,通常设置成和cpu的数量相等worker_processes 1; #全局错误日志及PID文件error_log /var/log/nginx/error.log;pid /var/run/nginx.pid; #工作模式及连接数上限events ...
分类:其他好文   时间:2016-06-22 12:26:58    阅读次数:197
Nginx的主要配置参数说明
#定义Nginx运行的用户和用户组user www www; #nginx进程数,建议设置为等于CPU总核心数。worker_processes 8; #全局错误日志定义类型,[ debug | info | notice | warn | error | crit ]error_log /var/ ...
分类:其他好文   时间:2016-06-21 12:29:31    阅读次数:170
nginx配置文件解析
#定义Nginx运行的用户#user nobody;#nginx启动进程数,建议设置为等于CPU总核心数。worker_processes 1;#全局错误日志定义类型,[ debug | info | notice | warn | error | crit ]#error_log logs/err ...
分类:其他好文   时间:2016-06-16 20:17:13    阅读次数:189
POJ2299 Ultra-QuickSort
Description In this problem, you have to analyze a particular sorting algorithm. The algorithm processes a sequence of n distinct integers by swapping ...
分类:其他好文   时间:2016-06-10 16:19:55    阅读次数:195
使用strace追踪多个进程
http://www.ttlsa.com/tools/use-strace-to-track-multiple-processes/ strace是Linux环境下的一款程序调试工具,用来监察一个应用程序所使用的系统调用及它所接收的系统信息。追踪程序运行时的整个生命周期,输出每一个系统调用的名字,参 ...
分类:系统相关   时间:2016-06-09 10:54:52    阅读次数:263
用Supervisord管理Python进程
http://feilong.me/2011/03/monitor-processes-with-supervisord Supervisord是用Python实现的一款非常实用的进程管理工具,类似于monit(关于monit见我的博客:用monit监控系统关键进程),monit和superviso ...
分类:编程语言   时间:2016-06-09 08:35:53    阅读次数:228
(转)Loadrunner监控Linux的17个指标
1、Average load:Average number of processes simultaneously in Ready state during the last minute. 上一分钟同时处于“就绪”状态的平均进程数2、Collision rate:Collisions per s ...
分类:系统相关   时间:2016-06-08 09:15:43    阅读次数:421
nginx+tomcat负载均衡+动静分离
1、服务器A安装ng,服务器B、C安装tomcat; 2、服务器A建立/data/www目录,用于发布静态文件; 3、ng无动静分离配置; user root root; worker_processes 8; pid /usr/local/nginx/nginx.pid; worker_rlimi ...
分类:其他好文   时间:2016-06-05 12:24:35    阅读次数:267
1265条   上一页 1 ... 81 82 83 84 85 ... 127 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!