Freebsd6.o下Apache2+php4.4+mysql5.0安装

2009-05-13 02:02:20来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

一. mysql

1. 安装

下载 mysql-standard-5.0.15-freebsd5.3-i386.tar.gz 至/tmp 目录.
cd /tmp
tar zxvf mysql-standard-5.0.15-freebsd5.3-i386.tar.gz
mv mysql-standard-5.0.15-freebsd5.3-i386 /datasql
cd /datasql/mysql-standard-5.0.15-freebsd5.3-i386
pw groupadd mysql
pw useradd mysql -g mysql
scripts/mysql_install_db --user=mysql
chown -R root  .
chown -R mysql data
chgrp -R mysql .
bin/mysqld_safe --user=mysql &     // 启动mysql服务
2. 启动
cd /datasql/mysql-standard-5.0.15-freebsd5.3-i386
./bin/mysqld_safe --user=mysql &
3. 关闭
mysqladmin -u root -p密码 shutdown
4. 恢复
mysql -u root -p密码 数据库名
二. Apache

1. 安装

下载 httpd-2.0.55.tar.bz2 至 /tmp 目录.
cd /tmp
tar zxvf httpd-2.0.55.tar.bz2
cd httpd-2.0.55
./configure --prefix=/usr/local/apache --enable-module=so --enable-module=rewrite --enable-shared=max
make
make install
2. 启动和关闭
cd /usr/local/apache/bin
./apachectl start  // 启动
./apachectl stop   // 关闭

三 . php

1. 安装
下载 php-4.4.0.tar.bz2 至/tmp 目录.
cd /tmp
tar zxvf php-4.4.0.tar.bz2
cd php-4.4.0
./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs --with-config-file-path=/usr/local/apache/conf --with-mysql=/datasql/mysql-standard-5.0.15-freebsd5.3-i386 --enable-track-vars --enable-inline-optimization --enable-bcmath --with-zlib --with-png --with-gd --with-jpeg --enable-gd-native-ttf --with-ttf --with-freetype --enable-memory-limit --enable-ftp --with-gettext
make
make install
cp php.ini-dist /usr/local/apache/conf/php.ini
2. 修改 httpd.conf
LoadModule php4_module modules/libphp4.so
AddType application/x-httpd-php .php
DirectoryIndex index.html index.html.var index.php
3. 测试
编辑文本文件 info.php
写入 Documentroot 路径.
四. 图形工具
netpbm
cd /usr/ports/graphics/netpbm
make install clean
ImageMagick
cd /usr/ports/graphics/ImageMagick
make install clean


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/13252/showart_69009.html

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:FreeBSD 常用软件

下一篇:VMware4不能安装最新的FreeBSD的解决方法。