在搭建web服务器的时候,在编译生成mod_jk的时候,需要用“./configure --with-apxs=”+“apxs的地址”,我们一般填写apxs的地址是按照网上的教程:“/usr/bin/apxs”或者“/usr/local/apache/bin/apxs”。这样可能找不到apxs,就会报错类似“configure:error:Invalid location for apxs:'/u...
分类:
Web程序 时间:
2015-05-11 10:55:37
阅读次数:
218
一、简介 Apache HTTP服务器是一个模块化的软件,使管理者可以选择核心中包含的模块以裁剪功能。可以在编译时选择被静态包含进httpd二进制映象的模块,也可以编译成独立于主httpd二进制映象的动态共享对象DSO,DSO模块可以在编译服务器之后编译,也可以用Apache扩展工具(apxs)编译...
分类:
Web程序 时间:
2015-04-24 15:43:58
阅读次数:
159
下载PHP源码:http://php.net/downloads.php(当前最新版本5.6.7)tar -xf php-xx.tarcd php-xx./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql 查看所有可...
分类:
Web程序 时间:
2015-04-21 19:58:30
阅读次数:
131
Download编译参数./configure \--prefix=/usr/local/Cellar/php-5.6.8 \--with-apxs2=/usr/local/Cellar/apache2/bin/apxs \--with-bz2 \--enable-zip \--enable-cal...
分类:
Web程序 时间:
2015-04-21 00:06:39
阅读次数:
185
一些编译php时的configure 参数 ./configure –prefix=/usr/local/php php 安装目录 –with-apxs2=/usr/local/apache/bin/apxs –with-config-file-pa...
分类:
Web程序 时间:
2015-04-10 12:54:29
阅读次数:
125
首先,使用whereisopenssl命令获取lib和include的路径,然后在apache源码的modules/ssl文件夹下,使用命令apxs-i-a-DHAVE_OPENSSL=1-I/usr/include/openssl/-L/usr/lib64/openssl/-c*.c-lcrypto-lssl-ldl
分类:
Web程序 时间:
2015-04-08 01:17:57
阅读次数:
193
编译php5.3make时出现错误一:make:***[ext/fileinfo/libmagic/apprentice.lo]Error1解决办法:在./configure加上选项:--disable-fileinfoDisablefileinfosupport禁用fileinfo./configure--prefix=/usr/local/php--with-apxs2=/usr/local/apache2/bin/apxs--with-config-file-p..
分类:
Web程序 时间:
2015-03-13 19:01:16
阅读次数:
160
#tarzxvf php-5.2.9.tar.gz#cdphp-5.2.9#./configure--prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs --with-mysql=/usr/local/mysql--with-g...
分类:
Web程序 时间:
2015-03-09 12:20:12
阅读次数:
159
因为我之前在apache上配置域名跳转时,因为我系统安装的apache里没有mod_rewrite模块,当打算为apache单独编译mod_rewrite模块时又提示了apxs:Error:Commandfailedwithrc=65536,然后了解到可能与libtool文件有关,与此同时发现在目录/usr/local/apache2/build下并没有libtool..
分类:
Web程序 时间:
2015-02-12 02:01:10
阅读次数:
183
一.安装Mod_wsgi1.先yum -y install httpd-devel,否则会提示没有apxs2.如果在make时 wsgi报错apxs:Error: Command failed with rc=65536,那要在configure时加上--with-python=xxxx这个参数3....
分类:
Web程序 时间:
2015-01-19 12:36:35
阅读次数:
173