码迷,mamicode.com
首页 >  
搜索关键字:processes    ( 1265个结果
[Operating System] {ud923} P4L1: Remote Procedure Calls
RPC is an IPC mechanism that specifies that the processes interact via procedure call interface. Birrell, Andrew, and Bruce Nelson. https://s3.amazona ...
分类:其他好文   时间:2019-05-29 14:50:09    阅读次数:183
nginx 简单配置
#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; event ...
分类:其他好文   时间:2019-05-24 18:38:24    阅读次数:134
A MacFUSE-Based Process File System for Mac OS X
referer: http://osxbook.com/book/bonus/chapter11/procfs/ Processes as Files The process file system ("procfs" for brevity, or simply "/proc", because ...
分类:系统相关   时间:2019-05-23 18:25:04    阅读次数:102
Nginx(三)--Nginx 的高可用
1. Nginx 进程模型简介 多进程+多路复用 master 进程 、 worker 进程 启动nginx,查看nginx的线程,可以发现: worker_processes 1 cpu 总核心数 epoll . select .... #user nobody; 用户 worker_proces ...
分类:其他好文   时间:2019-05-23 00:14:57    阅读次数:122
/etc/nginx/nginx.conf配置文件详解
user nginx; #数值和cpu核数个数一致worker_processes 8; #worker与cpu绑定 worker_cpu_affinity 0001 0010 0100 1000 1001 1010 1011 1100; #更改worker进程的最大打开文件数限制。如果没设置的话, ...
分类:其他好文   时间:2019-05-20 17:26:09    阅读次数:161
[Operating System] {Udacity} P2L1: Processes and Process Management
V0-Vmax => max size of the process address space heap and data may not be contiguous stack: last in first out any access of the process to x will acce ...
分类:其他好文   时间:2019-05-20 09:15:13    阅读次数:111
nginx配置文件解析
默认的 nginx 配置文件 nginx.conf 内容如下: 1 #user nobody; 2 worker_processes 1; 3 4 #error_log logs/error.log; 5 #error_log logs/error.log notice; 6 #error_log ...
分类:其他好文   时间:2019-05-16 23:00:16    阅读次数:157
无法分离 数据库‘xxx,因为它当前正在使用 解决方法
数据库多数时候都是被使用的,假如在使用过程中,我们要分离这个数据库进行一些其他操作。那么就会出现如下图的错误。 那么如何解决这个问题呢?一般情况下,我们在SSMS视图下操作,会关闭SQL的连接用户。 但是在命令行模式下,如何操作呢?如下图 再次执行分离数据库命令就OK了 总结及用法 分离不了数据库的... ...
分类:数据库   时间:2019-05-15 14:08:48    阅读次数:733
rsync+nginx实现公网yum源
整个过程分3步: 1:nginx提供目录浏览功能 nginx直接yum安装,不废话,直接贴配置文件 2:从上游yum源同步yum源到本地 直接贴定时任务 从定时任务的配置,可以看出,我同步了centos6、7基础源和epel源,有的同学担心,这样会特别占用空间!是的,如果不启用过滤,全部同步,确实很 ...
分类:其他好文   时间:2019-05-14 12:54:21    阅读次数:204
C#关闭多线程程序
Process[] processes = System.Diagnostics.Process.GetProcesses(); //获得所有进程 foreach (Process p in processes) { if (p.ProcessName.IndexOf("DispenserAutom ...
分类:编程语言   时间:2019-05-04 23:49:33    阅读次数:234
1265条   上一页 1 ... 20 21 22 23 24 ... 127 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!