WDCP V3 安装mod-cband 插件

插件下载地址  http://down.51cto.com/data/2334352

本文讲述的是 在使用wdcp网站环境下, 如何安装mod-cband插件

软件版本号

wdcp

apache 2.4.23

cband

mod-cband-0.9.6.1

在安装前先介绍一下其他的

wdcp的apache 目录

/www/wdlinux/httpd-2.4.23

在安装插件时 需要用到一个组件“apxs”,目录为

/www/wdlinux/httpd-2.4.23/bin/apxs

————————————————————————————————————————

接下来我们安装插件

  1. 创建下载插件的目录

    mkdir -p /usr/local/share/soft

    cd /usr/local/share/soft

    并将软件下载到当前目录(当然了,你也可以自己创建,随意)

  2. 安装软件

    a.解压软件 tar -zxvf mod-cband-0.9.6.1.tgz -C /usr/local/share/soft/

    b.进入目录 /usr/local/share/soft/mod-cband-0.9.6.1

    c.配置 ./configure --with-apxs=/www/wdlinux/httpd-2.4.23/bin/apxs

    d.编译 make 出现了错误,见下面

    修改当前软件的mod-cband.c  将里面的配置文件修改一下

    remote_ip 改为 client_ip

    remote_addr 改为 client_addr

    e.编译安装 make install

下面是编译时报的错误,

/www/wdlinux/httpd-2.4.23/bin/apxs -Wc,-Wall -Wc,-DDST_CLASS=3 -c src/mod_cband.c
/www/wdlinux/httpd-2.4.23/build/libtool --silent --mode=compile gcc -std=gnu99 -prefer-pic   -DLINUX -D_REENTRANT -D_GNU_SOURCE -g -O2 -pthread -I/www/wdlinux/httpd-2.4.23/include  -I/www/wdlinux/httpd-2.4.23/include   -I/www/wdlinux/httpd-2.4.23/include  -Wall -DDST_CLASS=3  -c -o src/mod_cband.lo src/mod_cband.c && touch src/mod_cband.slo
src/mod_cband.c: In function ‘mod_cband_set_random_pulse‘:
src/mod_cband.c:416: warning: cast to pointer from integer of different size
src/mod_cband.c: In function ‘mod_cband_set_limit‘:
src/mod_cband.c:436: warning: pointer targets in passing argument 2 of ‘mod_cband_conf_get_limit_kb‘ differ in signedness
src/mod_cband.c:68: note: expected ‘int *‘ but argument is of type ‘unsigned int *‘
src/mod_cband.c: In function ‘mod_cband_set_user_limit‘:
src/mod_cband.c:651: warning: pointer targets in passing argument 2 of ‘mod_cband_conf_get_limit_kb‘ differ in signedness
src/mod_cband.c:68: note: expected ‘int *‘ but argument is of type ‘unsigned int *‘
src/mod_cband.c: In function ‘mod_cband_set_class_limit‘:
src/mod_cband.c:874: warning: pointer targets in passing argument 2 of ‘mod_cband_conf_get_limit_kb‘ differ in signedness
src/mod_cband.c:68: note: expected ‘int *‘ but argument is of type ‘unsigned int *‘
src/mod_cband.c: In function ‘mod_cband_set_user_class_limit‘:
src/mod_cband.c:899: warning: pointer targets in passing argument 2 of ‘mod_cband_conf_get_limit_kb‘ differ in signedness
src/mod_cband.c:68: note: expected ‘int *‘ but argument is of type ‘unsigned int *‘
src/mod_cband.c: In function ‘mod_cband_create_traffic_size‘:
src/mod_cband.c:1010: warning: comparison with string literal results in unspecified behavior
src/mod_cband.c:1010: warning: comparison with string literal results in unspecified behavior
src/mod_cband.c:1014: warning: comparison with string literal results in unspecified behavior
src/mod_cband.c:1014: warning: comparison with string literal results in unspecified behavior
src/mod_cband.c: In function ‘mod_cband_get_dst‘:
src/mod_cband.c:1281: error: ‘conn_rec‘ has no member named ‘remote_ip‘
src/mod_cband.c: In function ‘mod_cband_get_remote_host‘:
src/mod_cband.c:1310: error: ‘struct conn_rec‘ has no member named ‘remote_ip‘
src/mod_cband.c:1311: error: ‘struct conn_rec‘ has no member named ‘remote_ip‘
src/mod_cband.c:1313: error: ‘struct conn_rec‘ has no member named ‘remote_addr‘
src/mod_cband.c: In function ‘mod_cband_filter‘:
src/mod_cband.c:3236: warning: passing argument 3 of ‘b->type->read‘ from incompatible pointer type
src/mod_cband.c:3236: note: expected ‘apr_size_t *‘ but argument is of type ‘int *‘
apxs:Error: Command failed with rc=65536
.
make: *** [src/.libs/mod_cband.so] 错误 1

修改后 make

/www/wdlinux/httpd-2.4.23/bin/apxs -Wc,-Wall -Wc,-DDST_CLASS=3 -c src/mod_cband.c
/www/wdlinux/httpd-2.4.23/build/libtool --silent --mode=compile gcc -std=gnu99 -prefer-pic   -DLINUX -D_REENTRANT -D_GNU_SOURCE -g -O2 -pthread -I/www/wdlinux/httpd-2.4.23/include  -I/www/wdlinux/httpd-2.4.23/include   -I/www/wdlinux/httpd-2.4.23/include  -Wall -DDST_CLASS=3  -c -o src/mod_cband.lo src/mod_cband.c && touch src/mod_cband.slo
src/mod_cband.c: In function ‘mod_cband_set_random_pulse‘:
src/mod_cband.c:416: warning: cast to pointer from integer of different size
src/mod_cband.c: In function ‘mod_cband_set_limit‘:
src/mod_cband.c:436: warning: pointer targets in passing argument 2 of ‘mod_cband_conf_get_limit_kb‘ differ in signedness
src/mod_cband.c:68: note: expected ‘int *‘ but argument is of type ‘unsigned int *‘
src/mod_cband.c: In function ‘mod_cband_set_user_limit‘:
src/mod_cband.c:651: warning: pointer targets in passing argument 2 of ‘mod_cband_conf_get_limit_kb‘ differ in signedness
src/mod_cband.c:68: note: expected ‘int *‘ but argument is of type ‘unsigned int *‘
src/mod_cband.c: In function ‘mod_cband_set_class_limit‘:
src/mod_cband.c:874: warning: pointer targets in passing argument 2 of ‘mod_cband_conf_get_limit_kb‘ differ in signedness
src/mod_cband.c:68: note: expected ‘int *‘ but argument is of type ‘unsigned int *‘
src/mod_cband.c: In function ‘mod_cband_set_user_class_limit‘:
src/mod_cband.c:899: warning: pointer targets in passing argument 2 of ‘mod_cband_conf_get_limit_kb‘ differ in signedness
src/mod_cband.c:68: note: expected ‘int *‘ but argument is of type ‘unsigned int *‘
src/mod_cband.c: In function ‘mod_cband_create_traffic_size‘:
src/mod_cband.c:1010: warning: comparison with string literal results in unspecified behavior
src/mod_cband.c:1010: warning: comparison with string literal results in unspecified behavior
src/mod_cband.c:1014: warning: comparison with string literal results in unspecified behavior
src/mod_cband.c:1014: warning: comparison with string literal results in unspecified behavior
src/mod_cband.c: In function ‘mod_cband_filter‘:
src/mod_cband.c:3236: warning: passing argument 3 of ‘b->type->read‘ from incompatible pointer type
src/mod_cband.c:3236: note: expected ‘apr_size_t *‘ but argument is of type ‘int *‘
/www/wdlinux/httpd-2.4.23/build/libtool --silent --mode=link gcc -std=gnu99    -o src/mod_cband.la  -rpath /www/wdlinux/httpd-2.4.23/modules -module -avoid-version    src/mod_cband.lo

write "make install" to install module

编译安装 make install

/www/wdlinux/httpd-2.4.23/bin/apxs -Wc,-Wall -Wc,-DDST_CLASS=3 -i -a -n cband src/mod_cband.la
/www/wdlinux/httpd-2.4.23/build/instdso.sh SH_LIBTOOL=‘/www/wdlinux/httpd-2.4.23/build/libtool‘ src/mod_cband.la /www/wdlinux/httpd-2.4.23/modules
/www/wdlinux/httpd-2.4.23/build/libtool --mode=install install src/mod_cband.la /www/wdlinux/httpd-2.4.23/modules/
libtool: install: install src/.libs/mod_cband.so /www/wdlinux/httpd-2.4.23/modules/mod_cband.so
libtool: install: install src/.libs/mod_cband.lai /www/wdlinux/httpd-2.4.23/modules/mod_cband.la
libtool: install: install src/.libs/mod_cband.a /www/wdlinux/httpd-2.4.23/modules/mod_cband.a
libtool: install: chmod 644 /www/wdlinux/httpd-2.4.23/modules/mod_cband.a
libtool: install: ranlib /www/wdlinux/httpd-2.4.23/modules/mod_cband.a
libtool: finish: PATH="/usr/lib64/qt-3.3/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/www/wdlinux/mysql/bin:/root/bin:/sbin" ldconfig -n /www/wdlinux/httpd-2.4.23/modules
----------------------------------------------------------------------
Libraries have been installed in:
   /www/wdlinux/httpd-2.4.23/modules

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR‘
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH‘ environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH‘ environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR‘ linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf‘

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
chmod 755 /www/wdlinux/httpd-2.4.23/modules/mod_cband.so
[activating module `cband‘ in /www/wdlinux/httpd-2.4.23/conf/httpd.conf]
时间: 2024-11-06 05:19:56

WDCP V3 安装mod-cband 插件的相关文章

SenchaCmd v3安装、查看信息

Sencha Cmd 是一个命令工具,可自动生成Sencha 应用程序.使用该工具,须安装Java Run-time Environment 或者JRE,必须是JRE6或以上版本. 1.1 下载Sencha Cmd: 访问地址:http://wwww.sencha.com/products/sencha-cmd/download 默认安装路径是:C:\Users\Administrator\bin   ,为了编译记忆,可修改为:C:\Sencha_Cmd\bin 1.2 使用Sencha Cmd

eclipse安装java ee插件方法步骤

1.本人以前使用的MyEclipse进行Javaweb开发,但是后来由于myeclipse实在太臃肿,经常在运行的过程中不流畅 (可能电脑内存也不是太高吧)   !所以坚决换用eclipse,但是问题来了,下载的eclipse因为是标准版所以也不支持Javaweb开发,所以要来配置一下开发环境,安装Javaee开发插件   ,以下为安装步骤 1.1 在Eclipse中菜单help选项中选择install new software选项 1.2 在work with 栏中输入 http://down

Elasticsearch安装中文分词插件ik

Elasticsearch默认提供的分词器,会把每个汉字分开,而不是我们想要的根据关键词来分词.例如: curl -XPOST "http://localhost:9200/userinfo/_analyze?analyzer=standard&pretty=true&text=我是中国人" 我们会得到这样的结果: { tokens: [ { token: text start_offset: 2 end_offset: 6 type: <ALPHANUM>

华为RH 5885 v3 安装windows server 2008 R2推荐步骤(自我总结)

近日为华为RH5885 v3型号的服务器安装windows server 2008 R2操作系统,总是会在安装过程中,安装程序报错,提示:安装过程中遇到问题或者机器重启,后来经过客服确认原因是windows server 2008 R2 的安装驱动与hba驱动冲突造成的,安装前需要拆掉hba.总结前几次华为RH5885 v3 安装中遇到的问题,现把能保证在V3服务器正常安装window server 2008R2的步骤总结如下: 1装备好安装介质:华为提供的安装引导盘,操作系统安装介质. 2服务

解决WordPress后台安装主题、插件图片不显示的问题

今天搭建wordpress发现现在主题的时候预览图片都没有了,于是搜索了一下,发现下面的这个方法确实管用,于是转载收藏. 有在WordPress后台安装主题.插件的小伙伴可能会遇到主题.插件图片不显示的问题,这给我们照成了不便.说到底还不是墙的问题,所以咱可以通过修改本地的hosts文件来决解. 决解方法 打开C:\WINDOWS\system32\drivers\etc目录里的hosts文件,将以下代码追加到hosts文件尾并保存,代码来自 Uazoh优佐生活 #wpCDN 93.184.21

Eclipse安装反编译插件

在使用eclipse工具或者MyEclipse工具进行开发的过程中,特别是进行web开发的时候,往往会使用很多jar包,但并不是所有的jar包都带有自己的源代码,而很多时候我们都想要查看jar的源代码,这个时候就需要反编译工具了,下面是我自己在eclipse中安装反编译插件的一些方法,希望对大家有所帮助. Eclipse Class Decompiler是一款Eclipse插件,整合了多种反编译器,和Eclipse Class Viewer无缝集成,能够很方便的使用插件查看类库源码,进行Debu

wdcp v3 Forbidden :You don&#39;t have permission to access /phpmyadmin on this server

First edit the file /www/wdlinux/apache/conf/vhost/00000.default.conf and add the additional line to the directory settings: <Directory /www/web/default/> order deny,allow deny from all allow from 127.0.0.1 allow from 192.168.1.0/15 </Directory&g

离线安装eclipse maven插件

最近用到maven,所以按照官网http://www.eclipse.org/m2e/的教程http://download.eclipse.org/technology/m2e/releases/,在线安装eclipse maven插件,可总提示有错: 按照网上的解决办法试过了,也没有得到安装成功,不知道是啥问题,但查过资料之后应该是依赖方面的问题,我也实在是没办法了.后来经过男朋友开导,脑子一灵光,完全可以离线安装的,为什么非要选择在线呢?傻了吧...... 从http://www.cr173

Eclipse 安装最新SVN插件

本文来源:http://liujianqiao398.blog.163.com/blog/static/181827257201331194610634/ Eclipse 安装最新SVN插件 2013-04-11 09:46:10|  分类: 开发工具eclipse |  标签:eclipse  svn  |举报|字号 订阅 1.下载最新的Eclipse,我的版本是3.7.2 indigo(Eclipse IDE for Java EE Developers)版    如果没有安装的请到这里下载