环境 64位CentOS 6.5(下的是400M的CentOS-6.5-x86_64-minimal.iso) php-5.3.28 Mysql-5.6.15,官网载的rpm包 mysql-server,mysql-client,mysql-devel,mysql-embedded,mysql-shared,mysql-compat,mysql-test 这几个全都装了 PHP编译语句: ./configure --prefix=/usr/local/php/ --enable-fpm --with-mysql=/usr/include/mysql/ --with-zlib-dir=/usr/include/ 提示错误 configure: error: mysql configure failed. Ple...
by 那只咸鱼 - PHP - 2014-01-02 15:36:35 阅读(4653) 回复(8)
apache+php 分别 安装到 64位 和32位的系统中(都4G内存), 同样的安装配置, apache 用prefork方式, 64位的php进程 占用的内存 是 32位的一倍以上,机器负载能力,并没有提高多少。
安装win64位apache以及64位php和64位mysql Currently no official 64bit versions of Apache and PHP exists for Microsoft Windows. Only MySQL supports officially 64bit Windows. If you have a 64bit version of Windows (2003/XP/Vista) and want to keep your system pure 64bit here is the solution! In this guide I will show you how to install and set up Apache 2.2 x 64 web servers, PHP 5.2 x64 and...
我现在用的系统,有64位,也有32位,内存都是4G , cpu负载都不是瓶颈, 都跑一样的php,发现64的php狂吃内存, 32位的http 一个进程 占 10M左右内存,64位的竟然占 30M左右 编译参数 apache是都用prefork方式, 除了 CFLAGS="-march=xxx "; LDFLAGS="-L/usr/lib64 -L/lib64", 这两项不一样,其它是一样的 。 64位的已经 趴过几回了,请高手指教一二!
我的新主机是64位的 装了64位的Redhat_Fedora_Core5_x86_64 可上传的php文件在ie里没法正常显示 (只显示代码) 请问谁有64bit的php 或者谁知道怎么能运行32bit版的php 谢谢! [ 本帖最后由 HonestQiao 于 2006-7-14 22:16 编辑 ]
我现在用的系统,有64位,也有32位,内存都是4G , cpu负载都不是瓶颈, 都跑一样的php,发现64的php狂吃内存, 32位的http 一个进程 占 10M左右内存,64位的竟然占 30M左右 编译参数 apache是都用prefork方式, 除了 CFLAGS="-march=xxx "; LDFLAGS="-L/usr/lib64 -L/lib64", 这两项不一样,其它是一样的 。 64位的已经 趴过几回了,请高手指教一二!
64位系统 编译安装php+openssl 安装出错 安装步骤: # tar /root/software/openssl-0.9.8b.tar.gz -C /usr/local/src/ # cd /usr/local/src/openssl-0.9.8b/ # ./config --prefix=/usr/local/ssl/ # make&&make test&&make install # tar /root/software # tar /root/software/php-4.4.9.tar.gz -C /usr/local/src/ # cd /usr/local/src/php-4.4.9/ # ./configure --with-apxs=/usr/local/apache/bin/apxs --with-gd --with-zlib-...
一、首先apache安装 安装apache-2.2.6.tar.gz #Cd /backup/soft #tar –zvxf httpd-2.2.6.tar.gz #cd httpd-2.2.6 #./configure --prefix=/usr/local/apache2 --with-included-apr --enable-so --enable-deflate=shared --enable-expires=shared --enable-rewrite=shared --enable-static-support --disable-userdir # make # make install 设置开机启动 # echo '/usr/local/apache2/bin/apachectl start ' >> /etc/rc.local ...
因为搭建测试环境需要,原apache是32位编译的,现在测试机是64位,需要编译php模块 出现"cannot open shared object file: No such file or directory"错误,经查怀疑是64位的php module不能适用于32位编译的apache。 急问怎么在该64位机上编译出32位的php module? 补充:因为apache还连接有其它很多模块,所以重新编译apache不靠谱... apache:2.0.x php:4.4.9 我修改了configure文件,把所有引用有gcc变量的地方统统替换成了...