免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 975 | 回复: 0
打印 上一主题 下一主题

Freebsd6.o下Apache2+php4.4+mysql5.0安装 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-01-19 10:46 |只看该作者 |倒序浏览
一. 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
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP