码迷,mamicode.com
首页 >  
搜索关键字:processes    ( 1265个结果
nginx生产配置
user www www;worker_processes 8;error_log /data/logs/nginx_error.log crit;pid /usr/local/webserver/nginx/nginx.pid;#Specifies the value for ...
分类:其他好文   时间:2015-07-01 11:53:10    阅读次数:121
Processes vs Threads
A process is an executing instance of an application. What does that mean? Well, for example, when you double-click the Microsoft Word icon, you start...
分类:其他好文   时间:2015-06-26 17:44:54    阅读次数:102
ORA-12519, TNS:no appropriate service handler found
ORA-12519,TNS:noappropriateservicehandlerfound产生原因:数据库上当前的连接数目已经超过了它能够处理的最大值。解决方法:selectcount(*)fromv$process--当前的连接数selectvaluefromv$parameterwherename=‘processes‘--数据库允许的最大连接数修改最大连接数:altersystems..
分类:移动开发   时间:2015-06-26 13:07:02    阅读次数:129
Nginx配置文件nginx.conf中文详解
#定义Nginx运行的用户和用户组user www www; #nginx进程数,建议设置为等于CPU总核心数。worker_processes 8; #全局错误日志定义类型,[ debug | info | notice | warn | error | crit ]error_log ar/lo...
分类:其他好文   时间:2015-06-25 15:19:46    阅读次数:106
nginx worker_processes设定
在做NGINX的时候会发现一个现象,就是把worker_processes设成2个或者更多的时候会发现产生的日志量还没有1个的时候多。请教过高人后得到一个答案,就是很可能由于多核心在切换的时候造成寄存器现场重建,会丢失一定的连接。则对nginx.conf进行以下修改:worker_processes4;work..
分类:其他好文   时间:2015-06-23 15:58:25    阅读次数:120
nginx配置详解
Nginx 配置文件详解 user nginx ; #用户 worker_processes 8; #工作进程,根据硬件调整,大于等于cpu核数 error_log logs/nginx_error.log crit; #错误日志 pid logs/nginx.pid; #pid放置的位置 worker_rlimit_no...
分类:其他好文   时间:2015-06-23 12:03:28    阅读次数:195
zorka源码解读之tracer内部实现
核心类:ZorkaAsyncThread.javaprotected BlockingQueue submitQueue; /*** Processes single item from submit queue (if any).*/public void runCycle() {try {T o...
分类:其他好文   时间:2015-06-23 11:50:03    阅读次数:184
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 two adjacent sequence elements until the seque...
分类:编程语言   时间:2015-06-21 11:56:32    阅读次数:126
Nginx 配置详解
常用nginx做web,代理,缓存等功能,一些常用的配置,老记不住,记在这儿,好查用 感谢博主,整理了这么好的东西,愧转为已用。#定义Nginx运行的用户和用户组user www www;#nginx进程数,建议设置为等于CPU总核心数。worker_processes 8;#全局错误日志定义类型,...
分类:其他好文   时间:2015-06-19 22:56:20    阅读次数:207
nginx 设置反响代理实现nginx集群
ginx.conf:worker_processes 1;events { worker_connections 1024;}http { include mime.types; default_type application/octet-stream; sendfile on; keepaliv...
分类:其他好文   时间:2015-06-18 16:50:44    阅读次数:141
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!