码迷,mamicode.com
首页 >  
搜索关键字:processes    ( 1265个结果
Nginx 配置文件
默认的config #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/ngi ...
分类:其他好文   时间:2021-01-05 11:39:49    阅读次数:0
multiprocessing.pool 使用
# f 参数是两个,multiprocessing.pool.map框架只能传一个的时候 from multiprocessing import Pool import time # 1 这个方法不行,但是装饰器思路好 # def my_function_helper(func): # def in ...
分类:其他好文   时间:2021-01-01 12:42:07    阅读次数:0
Nginx File Server
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #error_log "pipe:rollba ...
分类:其他好文   时间:2020-12-28 11:28:07    阅读次数:0
LINUX – WRITING A SIMPLE CONTAINER APP WITH NAMESPACES
One of the building blocks to implement containers is Linux namespaces. Namespaces control what a process can see. It can be the processes IDs, mount ...
分类:移动开发   时间:2020-12-11 12:32:59    阅读次数:22
JavaSE---Concurrency
1、Processes and Threads In concurrent programming, there are two basic units of execution: processes and threads.(并发程序中,有2个基本的执行单位:进程、线程) 1.1、Processe ...
分类:编程语言   时间:2020-11-12 13:23:54    阅读次数:6
conky配置(附配置项作用解释)
alignment top_right #是否嵌入桌面 background yes #是否绘制窗口边框 draw_borders no #窗口边框 border_width 10 #cpu_avg_samples 2 #默认颜色 #default_color cornflowerblue #默认字 ...
分类:其他好文   时间:2020-10-29 10:29:31    阅读次数:29
nginx基本配置
1 worker_processes 2; 2 events { 3 worker_connections 1024; 4 } 5 http { 6 include mime.types; 7 default_type application/octet-stream; 8 #upstream配置被 ...
分类:其他好文   时间:2020-10-22 23:03:13    阅读次数:20
nginx 优化部分配置的说明
nginx优化部分完整配置文件 [root@nginx ~]# cat nginx.conf user www; # nginx启动用户 worker_processes auto; # 工作进程数 根据cup核心数自动设置数量 worker_cpu_affinity auto; # 工作进程 自动 ...
分类:其他好文   时间:2020-09-17 22:09:01    阅读次数:28
Zabbix housekeeper processes more than 75% busy
原因分析 为了防止数据库持续增大,Zabbix有自动删除历史数据的机制,即housekeeper,而在频繁清理历史数据的时候,MySQL数据库可能出现性能降低的情况,此时就会告警。 一般来说,Zabbix都会监控Zabbix Server本身。如下所示,我们可以分析“Zabbix server: U... ...
分类:其他好文   时间:2020-09-04 17:34:53    阅读次数:58
Nginx配置文件(举例)
# vim /usr/local/nginx/conf/nginx.conf user dywww dywww; worker_processes auto; error_log /dydata/wwwlogs/error_nginx.log crit; pid /var/run/nginx.pid ...
分类:其他好文   时间:2020-08-13 22:17:03    阅读次数:61
1265条   上一页 1 2 3 4 ... 127 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!