您现在的位置是:网站首页> 编程资料编程资料
Freebsd7.0 Apache2.2+MySQL5+PHP5安装和配置方法_Unix/BSD_操作系统_
2023-03-29
968人已围观
简介 Freebsd7.0 Apache2.2+MySQL5+PHP5安装和配置方法_Unix/BSD_操作系统_
一、安装apache2.2.8
首先去http://www.apache.org网站上下载apache2.2.8源码包
解压缩
#tar zxvf httpd-2.2.8.tar.gz
得到 httpd-2.2.8文件夹
#cd httpd-2.2.8
配置
#./configure --prefix=/usr/local/apache --enable-so --enable-module=rewrite
编译
#make
#make install
安装完成
测试一下安装效果
#cd /usr/local/apache
#cd bin
# ./apachectl start
httpd: apr_sockaddr_info_get() failed for
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
[Thu Apr 03 09:37:41 2008] [warn] (2)No such file or directory: Failed to enable the 'httpready' Accept Filter
出现上述提示
#vi /usr/local/apache/conf/httpd.conf
修改SeverName一项即可解决(1)错误提示
产生(2)的原因是:FreeBSD 系统还提供了http filter,会自动过滤掉不完整的HTTP请求。
一、安装apache2.2.8
首先去http://www.apache.org网站上下载apache2.2.8源码包
解压缩
#tar zxvf httpd-2.2.8.tar.gz
得到 httpd-2.2.8文件夹
#cd httpd-2.2.8
配置
#./configure --prefix=/usr/local/apache --enable-so --enable-module=rewrite
编译
#make
#make install
安装完成
测试一下安装效果
#cd /usr/local/apache
#cd bin
# ./apachectl start
httpd: apr_sockaddr_info_get() failed for
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
[Thu Apr 03 09:37:41 2008] [warn] (2)No such file or directory: Failed to enable the 'httpready' Accept Filter
出现上述提示
#vi /usr/local/apache/conf/httpd.conf
修改SeverName一项即可解决(1)错误提示
产生(2)的原因是:FreeBSD 系统还提供了http filter,会自动过滤掉不完整的HTTP请求。
相关内容
- Freebsd 下运行QQ For Linux 的方法_Unix/BSD_操作系统_
- FreeBSD系统下读写 NTFS分区_Unix/BSD_操作系统_
- FreeBSD 数据转移办法_Unix/BSD_操作系统_
- FreeBSD双线负载均衡NAT服务器配置方法_Unix/BSD_操作系统_
- Freebsd7.0+Apache2.2+MySQL5+PHP5安装配置_Unix/BSD_操作系统_
- FreeBSD 6.2用freebsd-update升级过程_Unix/BSD_操作系统_
- UNIX系统下监视磁盘空间和使用情况_Unix/BSD_操作系统_
- FreeBSD系统SSH配置详解_Unix/BSD_操作系统_
- UNIX下VI编辑器使用_Unix/BSD_操作系统_
- 用OpenBSD 3.8 release自带的FTPD架设FTP服务器_Unix/BSD_操作系统_
