码迷,mamicode.com
首页 >  
搜索关键字:processes    ( 1265个结果
nginx配置
**************************学习nginx*************************** 1. nginx配置分为4个区 1)全局区: work_processes 1; #工作进程 1 一般设为 CPU数*核数(怎么看核数和CPU数?打开任务管理器-》性能-》可以看 ...
分类:其他好文   时间:2019-08-10 09:31:32    阅读次数:113
oracle job不自动执行,手动可以执行
解决方法: 用sysdba登录,执行show parameter job_queue_process看看结果是不是0 如果是这个原因,可以修改此参数 ALTER SYSTEM SET job_queue_processes = 100; 小结 1)job_queue_processes参数决定了jo ...
分类:数据库   时间:2019-08-09 11:57:46    阅读次数:138
nginx 配置实例(ssl、proxy、cache、gzip、upstream等优化)
[root@xxxxxxxxxxxxxx ~]# cat /usr/local/nginx/conf/nginx.conf user nobody; worker_processes 4; worker_cpu_affinity 0001 0010 0100 1000; error_log logs... ...
分类:系统相关   时间:2019-08-08 13:20:54    阅读次数:213
OCP-052考试题库汇总(22)-CUUG内部解答版
WhichfouraretrueabouttheArchive(ARCn)processes?A)Theymightbeusedduringinstancerecovery.B)Theycancreatearchivelogs.C)Theyarealwaysusedduringinstancerecovery.D)Theyarchiveredofromanactiveredolog.E)Theya
分类:其他好文   时间:2019-08-07 12:08:08    阅读次数:110
OCP-052考试题库汇总(21)-CUUG内部解答版
WhichtwoaretrueabouttheArchive(ARCn)processes?A)Theyarchiveredodirectlyfromtheredologbuffer.B)Theyareusedduringinstancerecovery.C)Theyautomaticallydeleteobsoletearchivelogstomakespacefornewarchivelogs
分类:其他好文   时间:2019-08-07 10:46:30    阅读次数:103
OCP-052考试题库汇总(21)-CUUG内部解答版
Which two are true about the Archive (ARCn) processes? A)They archive redo directly from the redo log buffer. B)They are used during instance recovery ...
分类:其他好文   时间:2019-08-07 10:44:48    阅读次数:126
ORA-12516:监听程序找不到服务协议堆栈要求的可用处理程序(转)
前言简单描述一下场景,总共两台应用服务器,每台安装3个tomcat进行集群,并通过nginx做了负载均衡,今天在生产环境中部署项目后进行测试,发现在一台应用服务器中同样的代码,tomcat1和tomcat2正常,而访问tomcat3时报404错误,去看了下log发现是数据库服务器出了问题: 然后登录 ...
分类:其他好文   时间:2019-08-06 11:15:10    阅读次数:112
boost Shared Memory
Shared memory is typically the fastest form of interprocess communicatioin. It provides a memory area that is shared between processes. One process ca ...
分类:其他好文   时间:2019-07-31 12:43:37    阅读次数:73
修改oracle数据库字符集
SQL> shutdown immediate; SQL> startup mount; SQL> alter system enable restricted session; SQL> alter system set job_queue_processes=0; SQL> alter data ...
分类:数据库   时间:2019-07-29 14:15:30    阅读次数:99
Nginx的一些常用配置
#定义Nginx运行的用户和用户组 #user nobody; #nginx进程数,建议设置为等于CPU总核心数。 worker_processes 1; #全局错误日志定义类型,[ debug | info | notice | warn | error | crit ] #error_log l... ...
分类:其他好文   时间:2019-07-25 16:10:30    阅读次数:103
1265条   上一页 1 ... 16 17 18 19 20 ... 127 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!