Make sure that eclipse is not active. If it is active kill eclipse from the processes tab of the task managerOpen %USERPROFILE%/ on Windows or simply ...
分类:
移动开发 时间:
2015-01-16 23:47:35
阅读次数:
237
In an extremely rough and simplified sketch, assuming the simplest possibleHTTP request, no proxies and IPv4 (this would work similarly fo...
分类:
Web程序 时间:
2015-01-14 00:43:31
阅读次数:
216
/* 以下命令在 SQL*Plus 中运行 */
--任务不执行时检查步骤
--1. 检查实例会话是否受限制
select instance_name,logins from v$instance;
-- 若提示 logins=RESTRICTED 则执行
alter system disable restricted session;
--2. 确保 job_queue_processes ...
分类:
数据库 时间:
2015-01-12 19:22:11
阅读次数:
189
总体而言,nginx的配置比起apache来是要简洁很多,而言容易理解得多的。我们先看一个简化版的配置文件nginx.conf:#user nobody;worker_processes 1;#error_log logs/error.log;#error_log logs/error.lo...
分类:
其他好文 时间:
2015-01-12 00:16:56
阅读次数:
253
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5154题目意思:有 n 门 processes(编号依次为1,2,...,n),然后给出 m 种关系: a,b。表示 process b 要在 process a 之前完成。问经过 m 种关系之后,有没有...
分类:
其他好文 时间:
2015-01-11 00:53:25
阅读次数:
238
1 ssh-host-config ?错误: There are still ssh processes running. Please shut them down first. ?解决: ps -ef | grep -v grep | grep ssh??????????kill -9 xxx ? 2?ssh localhost ?错误:c...
分类:
其他好文 时间:
2015-01-08 18:22:11
阅读次数:
191
#运行NGINX所使用的用户和组user www www;#NGINX进程数,建议按照CPU数目来定,一般按照它的倍数,每个进程消耗约10M内存worker_processes 4;#日志信息error_log /usr/local/nginx/logs/error.log;pid /usr/loc...
分类:
其他好文 时间:
2015-01-08 11:06:39
阅读次数:
160
在linux中查看线程数的三种方法
1、top -H
手册中说:-H : Threads toggle
加上这个选项启动top,top一行显示一个线程。否则,它一行显示一个进程。
2、ps xH
手册中说:H Show threads as if they were processes
这样可以查看所有存在的线程。
3、ps -mp
手册中说:m ...
分类:
编程语言 时间:
2015-01-07 14:59:23
阅读次数:
116
#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;events ...
分类:
其他好文 时间:
2015-01-06 21:26:29
阅读次数:
198
以下代码为nginx.conf文件内容worker_processes 1;events { worker_connections 1024;}http { # NginxHttpRealIpModule set_real_ip_from 10.96.0.0/16; se...
分类:
其他好文 时间:
2015-01-06 19:57:36
阅读次数:
261