码迷,mamicode.com
首页 >  
搜索关键字:processes    ( 1265个结果
decide your linux OS is GUI or not
Try: ps -ef|grep X The ps command will display information about a selection of the active processes (from the man page - man ps). This command will l ...
分类:系统相关   时间:2016-04-09 09:17:35    阅读次数:127
nginx 并发数问题思考:worker_connections,worker_processes与 max clients
我相信,很多人都跟我一样,看书都不会太细致也不太认真思考,感觉书中讲的东西都应该是对的,最近读书时我发现以前认为理所当然的东西事实上压根都没有弄明白,最终的结果是,书是别人的,书中的知识也是别人的。 无论是看过的nginx有关书还是网上看到的有关nginx 配置说明的文章(http://wiki.n ...
分类:其他好文   时间:2016-04-07 10:49:31    阅读次数:251
Too many processes on Zabbix server   解决办法
新部署的zabbix服务器,上线后在mointoring页面就有“ToomanyprocessesonZabbixserver”的告警。在网上查看了很多资料没能解决。只能按照经验处理1ps-axf查看进程情况,观察一下什么进程比较多。16838?S0:00\_/usr/local/sbin/zabbix_server:configurationsyncer[waiting60secf..
分类:其他好文   时间:2016-04-06 18:54:32    阅读次数:2164
nginx的通用配置
通性配置 定义Nginx运行的用户和用户组 user www www; nginx进程数,建议设置为等于CPU总核心数. worker_processes 8; 全局错误日志定义类型,[ debug | info | notice | warn | error | crit ] error_log ...
分类:其他好文   时间:2016-04-03 11:42:18    阅读次数:193
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-03-30 19:46:44    阅读次数:220
详解nginx.conf文件配置项(包括负载均衡)
http://www.cnblogs.com/hsapphire/archive/2010/04/08/1707109.html #运行用户 user  nobody nobody; #启动进程 worker_processes  2; #全局错误日志及PID文件 error_log  logs/e
分类:其他好文   时间:2016-03-14 10:42:42    阅读次数:199
regsvr32 命令小集注册OCX控件,注册控件(包括十几个举例)
Regsvr32 进程文件: regsvr32 or regsvr32.exe  进程名称: Microsoft DLL Registration Service  英文描述: regsvr32.exe is a processes belonging to the Windows OS and i
分类:其他好文   时间:2016-03-13 19:40:45    阅读次数:206
nginx 优化(突破十万并发)
一般来说nginx配置文件中对优化比较有作用的为以下几项: worker_processes 8; nginx进程数,建议按照cpu数目来指定,一般为它的倍数。 worker_cpu_affinity 00000001 00000010 00000100 00001000 00010000 0010
分类:其他好文   时间:2016-03-12 14:38:45    阅读次数:127
rails 项目部署中 nginx 报错及解决方法
1. 报403错误,是因为启动nginx的用户默认是nobody,没有对项目目录的访问权限。 user myName; worker_processes 2; 2. 报404错误,是因为在nginx.conf中未配置passenger server { listen 80; server_name
分类:其他好文   时间:2016-03-10 10:47:30    阅读次数:137
Nginx配置文件nginx.conf中文详解
更详细的模块参数请参考:http://wiki.nginx.org/Main#定义Nginx运行的用户和用户组user www www;#nginx进程数,建议设置为等于CPU总核心数。worker_processes 8;#全局错误日志定义类型,[ debug | info | notice |
分类:其他好文   时间:2016-03-08 16:17:05    阅读次数:172
1265条   上一页 1 ... 86 87 88 89 90 ... 127 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!