一个搞前端交互的,总会遇到这样那样的,不需要写代码去解决的问题,怎么搞?答:只能去大海里捞,问题很明确但答案不一定靠谱,因为回答的人不用去考虑你是否会给自己系统搞崩溃。那么我只能把自己经过验证的答案整出来,问题细化,做个记录,同时帮助还在摸索该问题的人。第一步:1 cd /etc/apache2/s...
分类:
其他好文 时间:
2014-06-18 19:36:55
阅读次数:
288
准备环境ApacheApache是http服务器,我们利用其对Tomcat进行负载均衡。目前最新版本为2.2.17,下载地址为http://httpd.apache.org/download.cgi#apache22。如下图:目前已经出现Apache2.3.11,但是为beta版本,所以没有使用。下...
分类:
其他好文 时间:
2014-06-18 16:34:09
阅读次数:
326
linux下安装最新版subversion,代码:
[root@localhost subversion-1.8.9]#
./configure --prefix=/usr/local/subversion --with-apxs=/usr/local/apache2/bin/apxs --with-apr=/usr/local/apr --with-apr-util=/us...
分类:
系统相关 时间:
2014-06-18 12:19:21
阅读次数:
275
maven3 安装:安装 Maven 之前要求先确定你的 JDK 已经安装配置完成。Maven是 Apache 下的一个项目,目前最新版本是 3.0.4,我用的也是这个。首先去官网下载 Maven:http://www.apache.org/dyn/closer.cgi/maven/binaries...
分类:
系统相关 时间:
2014-06-18 10:07:43
阅读次数:
251
window+nginx+php-cgi变通多开线程方法...
分类:
编程语言 时间:
2014-06-17 21:44:16
阅读次数:
320
#配置服务器生成页面的页脚On|Off|EMail
ServerSignatureOff
#选择性输出服务器相关信息:Full|Major|Minimal|Minor|OS|Prod
ServerTokensFull
#Apache的安装目录
ServerRoot"D:/EnvPHP/Apache2.4"
#默认监听端口号
Listen80
#设置管理员的邮箱地址
ServerAdminxxxxxxxx@qq.c..
分类:
其他好文 时间:
2014-06-17 18:09:45
阅读次数:
245
commons-codec是Apache下面的一个加解密开发包官方地址为:http://commons.apache.org/codec/官方下载地址:http://commons.apache.org/codec/download_codec.cgi在线文档:http://commons.apac...
分类:
其他好文 时间:
2014-06-17 14:49:54
阅读次数:
261
经常需要根据IP地址统计apache站点访问量,最基本的脚本.根据IP访问量降序排列:#!/bin/bash
#Script_name:access_count
acc_log=/usr/local/apache2/logs/access_log
/bin/awk‘{print$1}‘$acc_log|sort|uniq-c|sort-nr执行效果:[root@zabbix~]#shaccess_count
94989192.168.1..
分类:
移动开发 时间:
2014-06-16 18:18:50
阅读次数:
332
很多朋友想要在window下配置apache+php+mysql运行环境,其实从这么长时间的经验来看,win2003下还是用iis,如果为了学习或对apache特别熟悉的朋友可以用apache一 准备1 下载apache http://httpd.apache.org/download.cgi#ap...
分类:
Web程序 时间:
2014-06-15 13:47:03
阅读次数:
359
编译参数:
./configure --prefix=/usr/local/php5 --with-apxs2=/usr/local/apache2/bin/apxs --enable-shared --with-libxml-dir --with-gd --with-openssl --enable-mbstring --wit...
分类:
Web程序 时间:
2014-06-14 09:13:09
阅读次数:
245