摘要:
apache功能其实很是强大,最近一段时间研究了下apache的反向代理和负载均衡,反向代理网协的外网出口和我的博客出口就是通过apache的反向代理实现的,总结一下,重点说说负载均衡的配置。首先说先实验环境吧操作系统:DEBIAN 5.03(Ubuntu也可以同理配置)一、安装apache加载模块apt-get install apache2然后进入到apache的配置目录cd /etc/apache2apache的反向代理和负载均衡其实利用的都是反向代理的原理,至于什么叫做反向代理可以点此http://baike.baidu.com/view/1165595.htm关键需要加载下面三个模块 阅读全文
摘要:
1、redmine 项目管理工具 安装 sudo apt-get install redmine redmine-mysql A. sudo ruby /usr/share/redmine/server/script -e production http://127.0.0.1:3000/ B. sudo cp /etc/apache2/conf.d/phpmyadmin.conf /etc/ap... 阅读全文
摘要:
代码代码代码 阅读全文
摘要:
要想抗锯齿,需要你做的不是在netbeans.conf文件中新加入“-J-Dawt.useSystemAAFontSettings=on”这个选项,而是要在netbeans.conf文件中默认的“netbeans_default_options”选项中加入抗锯齿参数,这样才能真的抗锯齿。所以正解的选项应该是如下这个样子: netbeans_defau... 阅读全文
摘要:
最近发现window 7 下的netbeas 越来越慢,开始尝试用虚拟机装ubuntu 里看看速度如何,试了一下,速度超快1、下载virtualBox http://www.virtualbox.org/wiki/Downloads 2、安装Ubuntu http://www.ubuntu.org.cn/getubuntu/download/ 3、更新源(10.04)代码Code highli... 阅读全文
摘要:
Setting up SSL with Ubuntu 8.10 is a simple process but it does have a few gotchas that you need to be aware of. The setup has changed from 8.04. One issue is that the +CompatEnvVars is no longer used... 阅读全文
该文被密码保护。 阅读全文
摘要:
type TReadOrderThread = class(TThread) private FCDS: TClientDataSet; Fstr: string; protected procedure Execute; override; procedure readOrder; function XMLToDataSet(strXML:WideString;nodeName:string):... 阅读全文
摘要:
{idHTTP} procedure upload;var tmpWeb: TIdHTTP; FS: TIdMultiPartFormDataStream;begin try tmpWeb:=TIdHTTP.Create(nil); FS := TIdMultiPartFormDataStream.Create; FS.AddFormField('postconntext', ''); //上传参... 阅读全文
摘要:
library plug_in;uses SysUtils, Classes, Unit3 in 'H:\test\Unit3.pas' {Form3};exports GetForm,GetName;{$R *.res}beginend.{要加载的窗体} unit Unit3;interfaceuses Windows, Messages, SysUtils, Variants, Classes... 阅读全文