开门见山,操作如下:首先,在前端nginx上需要做如下配置:location/{proxy_passhttp://test1;proxy_set_hearderhost$host;proxy_set_headerX-Real_IP$remoute_addr;proxy_set_header$proxy_add_x_forwarded_for;};nginx会在把请求转向后台real-server前把http报头中的ip地址进..
分类:
其他好文 时间:
2014-05-27 04:03:48
阅读次数:
321
利用cacti提供的api接口可以进行添加查询监控这些api脚本放在cacti的cli目录下面:/web/cacti02/cli编写脚本循环调用下面这些api脚本,就可以达到批量添加的效果,省去大量的人力和时间add_data_query.phpadd_device.phpadd_graphs.php
add_graph_template.phpadd_perms.phpadd..
分类:
其他好文 时间:
2014-05-27 03:52:37
阅读次数:
286
ThinkPHP访问流程在手册1.11系统流程里就有介绍,我阅读的ThinkPHP的版本是3.1.3,大家可以看下手册,基本的流程也有,现在就是详细去介绍一下ThinkPHP的访问流程.(调试模式下的,在部署模式下,会把中间的URL解析,文件加载之类的,都封装到一个文件里)1.入口文件(index.php)入口文件..
分类:
Web程序 时间:
2014-05-27 03:34:01
阅读次数:
266
21.Collection接口:
1>容器类的添加、删除:
· add(Object o) :将对象添加到集合。
· Remove(Object o) :删除集合中与o相匹配的对象。
2>容器中类的查询:
· Size(): 返回集合中元素的个数。
· isEmpty(): 判断集合中是否包含元素。
· contains(Object o): 判断集合中是否包...
分类:
编程语言 时间:
2014-05-22 13:03:23
阅读次数:
271
目的:本文通过分析JDK源码来对比ArrayBlockingQueue 和LinkedBlockingQueue,以便日后灵活使用。
1. 在Java的Concurrent包中,添加了阻塞队列BlockingQueue,用于多线程编程。BlockingQueue的核心方法有:
* boolean add(E e) ,把 e 添加到BlockingQueue里。如果BlockingQueue可以容纳,则返回true,否则抛出异常。
* boolean offer(E e),表示如果可能的话,将 e 加...
分类:
数据库 时间:
2014-05-22 12:19:23
阅读次数:
442
【题目】
Suppose a sorted array is rotated at some pivot unknown to you beforehand.
(i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2).
You are given a target value to search. If found in the array return its index, otherwise return -1.
You may assume no du...
分类:
其他好文 时间:
2014-05-22 10:43:12
阅读次数:
310
【题目】
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.
You may assume no duplicates in the array.
Here are few examples.
[1,3,5,6], 5 → 2
[1,3,5,6]...
分类:
其他好文 时间:
2014-05-22 09:41:59
阅读次数:
195
1、HttpClient相关的重要资料:
官方网站:http://hc.apache.org/
API:http://hc.apache.org/httpcomponents-client-4.3.x/httpclient/apidocs/index.html
tutorial: http://hc.apache.org/httpcomponents-client-4.3.x/tutoria...
分类:
其他好文 时间:
2014-05-22 08:03:03
阅读次数:
259
<script>parent.location.href=‘../Index.aspx‘</script>
分类:
Web程序 时间:
2014-05-20 19:50:20
阅读次数:
332
为虚拟磁盘添加/删除物理磁盘Add-Physicaldisk此命令用于将指定的物理磁盘添加到虚拟磁盘在存储池一节已经介绍过将物理磁盘加入存储池的用法,在这里将介绍在虚拟磁盘上的用法在正式介绍命令用法之前先回答在Get-StoragePool,Get-VirtualDisk,New-VirtualDisk三节中的提问要..
分类:
其他好文 时间:
2014-05-20 19:05:35
阅读次数:
280