码迷,mamicode.com
首页 >  
搜索关键字:processes    ( 1265个结果
nginx--->高并发优化
在日常的运维工作中,经常会用到nginx服务,也时常会碰到nginx因高并发导致的性能瓶颈问题。 nginx配置文件和内核参数的优化,如有不妥,敬请指出 一、nginx的配置优化 1)nginx进程数,建议按照cpu数目来指定,一般跟cpu核数相同或为它的倍数。 worker_processes 8 ...
分类:其他好文   时间:2016-12-25 18:38:47    阅读次数:171
How Node.js Multiprocess Load Balancing Works
As of version 0.6.0 of node, load multiple process load balancing is available for node. The concept of forking and child processes isn't new to me. Y ...
分类:Web程序   时间:2016-12-25 01:25:58    阅读次数:295
Zabbix discoverer processes more than 75% busy
1.vim/etc/zabbix/zabbxi_server.confStartDiscoverers=5systemctlrestartzabbix-server
分类:其他好文   时间:2016-12-23 02:24:30    阅读次数:423
【Todo】僵尸进程学习 & 进程状态列表
参考这篇文章: http://www.mike.org.cn/articles/treatment-of-zombie-processes-under-linux/ 在Linux进程的状态中,僵尸进程是非常特殊的一种,它已经放弃了几乎所有内存空间,没有任何可执行代码,也不能被调度,仅仅在进程列表中保 ...
分类:系统相关   时间:2016-12-23 01:38:35    阅读次数:212
multiprocessing跨平台锁的使用(Windows问题)
在Windows上可能遇到,开启的子进程不会关闭的问题 参考multiprocessing官方文档: Explicitly pass resources to child processes On Unix a child process can make use of a shared resou ...
分类:Windows程序   时间:2016-12-21 21:02:12    阅读次数:207
nginx配置记录
user www-data;worker_processes 1; error_log /var/log/nginx/error.log;pid /var/run/nginx.pid; events { worker_connections 1024; # multi_accept on;} htt ...
分类:其他好文   时间:2016-12-16 22:01:36    阅读次数:109
Nginx配置文件nginx.conf详解
1 #定义Nginx运行的用户和用户组 2 user www www; 3 4 #nginx进程数,建议设置为等于CPU总核心数。 5 worker_processes 8; 6 7 #全局错误日志定义类型,[ debug | info | notice | warn | error | crit ... ...
分类:其他好文   时间:2016-12-14 19:14:45    阅读次数:180
oracle之nomount、mount、open三种状态
1.先来看下外国网站上的资料怎么说 Nomount – The database instance has been started (processes and memory structures have been allocated, but control file is not yet a ...
分类:数据库   时间:2016-12-13 07:09:38    阅读次数:350
Nginx配置文件nginx.conf中文详解
Nginx配置参数中文说明。#定义Nginx运行的用户和用户组user www www;#nginx进程数,建议设置为等于CPU总核心数。worker_processes 8;#全局错误日志定义类型,[ debug | info | notice | warn | error | crit ]err ...
分类:其他好文   时间:2016-12-09 13:59:14    阅读次数:193
Nginx配置配置文件nginx.conf的设置
引用自:http://www.ha97.com/5194.html #定义Nginx运行的用户和用户组user www www; #nginx进程数,建议设置为等于CPU总核心数。worker_processes 8; #全局错误日志定义类型,[ debug | info | notice | wa ...
分类:其他好文   时间:2016-12-06 02:17:53    阅读次数:250
1265条   上一页 1 ... 73 74 75 76 77 ... 127 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!