码迷,mamicode.com
首页 >  
搜索关键字:processes    ( 1265个结果
nginx配置详解
具体请参考官方的文档:http://nginx.org/en/docs/ user nginx nginx ; Nginx用户及组:用户 组。window下不指定 worker_processes 8; 工作进程:数目。根据硬件调整,通常等于CPU数量或者2倍于CPU。 error_log logs... ...
分类:其他好文   时间:2018-06-08 22:38:40    阅读次数:250
搭建lnmp环境,nginx的配置文件/etc/nginx/nginx.conf
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; ev... ...
分类:其他好文   时间:2018-06-08 18:30:20    阅读次数:1524
nginx.conf
#user nobody; worker_processes 1; error_log logs/error.log; #pid logs/nginx.pid; events { worker_connections 1024; } http { include mime.types; defaul... ...
分类:其他好文   时间:2018-06-06 21:50:34    阅读次数:139
文件同步工具 lsyncd2.1.6 安装使用问题
项目有文件实时同步备份的需求,做了一下调查,比较好的解决方法是使用lsyncd工具。这里主要记录一下遇到的问题及解决方法。 lsyncd 的相关介绍和对比可见: lsyncd实时同步搭建指南——取代rsync+inotify Linux下同步工具inotify+rsync使用详解 lsyncd官方文 ...
分类:其他好文   时间:2018-06-06 21:42:42    阅读次数:169
JUC同步器框架
The java.util.concurrent Synchronizer Framework 前提 AQS(java.util.concurrent.locks.AbstractQueuedSynchronizer)是并发编程大师Doug Lea创作的用来构建锁或者其他同步组件(信号量、事件等)的 ...
分类:其他好文   时间:2018-06-06 15:45:58    阅读次数:185
zabbix【配置文件】
zabbxi中nginx配置文件worker_processes  1;events {        worker_connections  1024;}http {    include       mime.types;    default_type  
分类:其他好文   时间:2018-06-05 00:48:27    阅读次数:209
nginx配置文件详解
Nginx配置文件(nginx.conf)配置详解 Nginx的配置文件nginx.conf配置详解如下: user nginx nginx ; Nginx用户及组:用户 组。window下不指定 worker_processes 8; 工作进程:数目。根据硬件调整,通常等于CPU数量或者2倍于CP ...
分类:其他好文   时间:2018-06-04 21:38:23    阅读次数:128
nginx配置文件nginx.conf超详细讲解
#nginx进程,一般设置为和cpu核数一样worker_processes 4; #错误日志存放目录 error_log /data1/logs/error.log crit; #运行用户,默认即是nginx,可不设置user nginx #进程pid存放位置pid /application/ng ...
分类:其他好文   时间:2018-06-04 14:34:26    阅读次数:227
LTI系统对WSS Processes的作用
本文主要专注讨论LTI系统对WSS Process的影响。WSS Process的主要特性有mean以及correlation,其中correlation特性在滤波器设计,信号检测,信号预测以及系统识别中扮演者非常重要的作用。 LTI系统的数学式由卷积定义,假设LTI系统的脉冲响应为$h(t)$,输 ...
分类:其他好文   时间:2018-06-03 01:00:47    阅读次数:250
虚拟存储器(一)
需要虚拟存储器的原因: As demand on the CPU increases, processes slow down in some reasonably smooth way. But if too many processes need too much memory, then so ...
分类:其他好文   时间:2018-06-01 20:06:02    阅读次数:171
1265条   上一页 1 ... 39 40 41 42 43 ... 127 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!