开门见山,操作如下:首先,在前端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
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
1、手工改变数据文件的大小
SQL>conn / as sysdba
SQL>Createtablespace exampletb Datafile 'E:\ examp01.dbf' size 10M ;
SQL>alter database datafile 'E:\examp01.dbf' resize 20m;
SQL>alter database datafile 'E:\exa...
分类:
数据库 时间:
2014-05-22 07:42:15
阅读次数:
374
静态代理方式是为每个被代理的对象构造对应的代理类,例如我们有一个计算器的接口以及一个具体实现public interface Calculator { int
add(int a, int b);}public class CalculatorImpl implements Calculato...
分类:
其他好文 时间:
2014-05-22 03:58:08
阅读次数:
291
Platform设备之gpio-led分析led测试以使用的9263板子为例,首先看board-sam9263ek.c的ek_board_init函数,static
void __init ek_board_init(void){ /* Serial */ at91_add_device_seria...
分类:
其他好文 时间:
2014-05-21 23:43:48
阅读次数:
306
1、
??
Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two num...
分类:
其他好文 时间:
2014-05-21 10:49:10
阅读次数:
221
在django admin的 change_view,
add_view和delete_view页面,如果想让页面完成操作后跳转到我们想去的url,该怎么做默认django
admin会跳转到changelist_view页面------------------------------下面的代码是d...
分类:
其他好文 时间:
2014-05-21 05:31:25
阅读次数:
321
为虚拟磁盘添加/删除物理磁盘Add-Physicaldisk此命令用于将指定的物理磁盘添加到虚拟磁盘在存储池一节已经介绍过将物理磁盘加入存储池的用法,在这里将介绍在虚拟磁盘上的用法在正式介绍命令用法之前先回答在Get-StoragePool,Get-VirtualDisk,New-VirtualDisk三节中的提问要..
分类:
其他好文 时间:
2014-05-20 19:05:35
阅读次数:
280