debian下配置lamp

本文介绍在Debian Linux系统上使用源码方式安装MySQL 5.1及Apache 2.2的过程,包括配置选项说明及解决64位系统中遇到的链接问题,并提及使用Django 1.1.4作为应用框架。
摘要由CSDN通过智能技术生成

linux系统:debian

apache 2.2

mysql5.1

python2.6.7

mysql源码安装:

./configure --prefix=/opt/mysql5/ \
--enable-largefile --with-charset=utf8 \
--with-extra-charsets=all \
--with-pthread \
--with-unix-socket-path=/tmp/mysql.sock \
--enable-assembler \
--enable-thread-safe-client \
--without-debug \
--with-atomic-ops=smp \
--with-mysqld-ldflags=-all-static \
--with-client-ldflags=-all-static \
--with-big-tables --without-ndb-debug \
--with-embedded-server \
--without-docs \
--without-man \
--with-plugins=innobase,innodb_plugin

错误
/usr/local/lib/libz.a: could not read symbols: Bad value(64 位 Linux)
/usr/bin/ld: /usr/local/lib/libz.a(crc32.o): relocation R_X86_64_32 against `a local symbol' can not be used when making a shared object; recompile with -fPIC

/usr/local/lib/libz.a: could not read symbols: Bad value


一般是64 位 电脑才会出现。


解决方法如下:

cd zlib-1.2.3 //进入zlib目录

CFLAGS="-O3 -fPIC" ./configure   //使用64位元的方法进行编译







apache源码安装:

./configure --prefix=/opt/apache2 \
"--with-included-apr" \
"--enable-so" \
"--with-mpm=worker" \
"--with-z" \
"--enable-mods-shared=all" \
"--enable-deflate=shared" \
"--enable-expires=shared" \
"--enable-rewrite" \
"--disable-userdir" \
"--disable-authn-file" \
"--disable-authn-dbm" \
"--enable-authn-anon"



另django1.1.4做框架

python setup.py build

python setup.py install

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值