阿七
级别: 未验证会员
精华:
0
发帖: 909
威望: 0 点
金钱: 2161 RMB
贡献值: 0 点
在线时间:512(小时)
注册时间:2006-03-29
最后登录:2008-08-07
|
debian配置PHP5+MYSQL+Apache
转自:http://blog.csdn.net/oleverx/archive/2005/12/23/559804.aspx
1、先添加个源:
在/etc/apt/sources.list中添加:
deb http://packages.dotdeb.org stable all
deb-src http://packages.dotdeb.org stable all
apt-get update
2、apt-get install php5
apt-get install apache2
apt-get install mysql-server mysql-client
apt-get install php5-mysql php5-curl php5-gd
dpkg -l 'php5-*'
aptitude install libapache2-mod-php5 php5-mysql
3、/etc/apache2/httpd.conf 添加:
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
4、ln -s /etc/apache2/mods-available/php5.* /etc/apache2//mods-enabled
5、apt-get install apache2-mpm-prefork
6、/etc/init.d/apache2 restart
[ 此贴被阿七在2007-08-18 15:50重新编辑 ]
|
|
[楼 主]
|
Posted: 2007-08-14 15:57 |
| |