SQL Server database administrators may frequently need in especially development and test environments instead of the production environments to kill ...
分类:
数据库 时间:
2014-09-26 19:06:48
阅读次数:
667
LNMP环境下压力测试时的主要调试参数:进行HTTP的压力测试时,很多时候会遇到很小的并发数,服务器就会出现不响应,或者连接超时,一般导致的原因有如下几点:一、Nginx主要调试参数主模块参数:worker_processes = 4 #按照CPU核心数量的设置worker_rl...
分类:
其他好文 时间:
2014-09-26 07:31:08
阅读次数:
190
##定义nginx运行的用户各用户组user nginx nginx;##nginx进程数,建议设置与cpu核心数一致worker_processes 1;##全局错误日志定义类型[ debug | info | notice | warn | error | crit ]#error_log lo...
分类:
其他好文 时间:
2014-09-24 19:08:07
阅读次数:
197
vim /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 i...
分类:
其他好文 时间:
2014-09-24 15:47:36
阅读次数:
200
nginx为反向代理服务器,可以反向代理不同域名转向不同的具体服务器。可以用于负载压力或是同一台机器使用不同域名进行访问。以下片段是服务器配置: 1 #user cmcc; 2 3 worker_processes 16; 4 #worker_cpu_affinity 00000001 0...
分类:
其他好文 时间:
2014-09-23 15:39:54
阅读次数:
377
由于参数文件spfile是二进制文件,所以不能直接使用文本编辑器进行修改,我们可以再启动数据库以后使用sql命令进行修改: alter system 参数名=参数值, scope=both|spfile|memory sid=*|’orcl’ 等,其中具体的权威参数请参考官方文档
1 修改processes 这个参数不能修改内存中的值,
Alter system processes...
分类:
数据库 时间:
2014-09-20 23:25:59
阅读次数:
306
一、修改Oracle会话及最大连接数
1、查看最大连接数
SQL> show parameter processes;
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
...
分类:
数据库 时间:
2014-09-19 13:55:45
阅读次数:
207
进程(Processes)和任务(tasks)所有的对象都需要内存和一个虚拟机来存活。一个process就是OS为了你的应用程序存活而开辟的空间,它也是用来让你的应用程序运行起来的必要条件。进程可能拥有资源文件,这些资源文件都由OS像管理内存一样来管理。也可能拥有网络socket或者可以打开的文件。...
分类:
移动开发 时间:
2014-09-18 23:39:34
阅读次数:
238
It's common for software systems to make remote calls to software running in different processes, probably on different machines across a network. One...
分类:
其他好文 时间:
2014-09-17 11:42:52
阅读次数:
324
It's per-process. Once your process exits, the allocated memory is returned to the OS for use by other processes (new or existing).To answer your edit...
分类:
移动开发 时间:
2014-09-16 07:03:00
阅读次数:
142