Linux AS 4.0 +Apache安装
一、Linux AS 4.0 安装
注:本步骤需要Linux 内核为2.6.x,如果不是,一定安装不成功。
1.apache安装
(1) 从安装网上下载Linux版的安装文件httpd-2.2.3.tar.gz
(2) 命令列表如下:
cd /root/tmp
tar -zxvf httpd-2.2.3.tar.gz
mv httpd-2.2.3 httpd
cd httpd
./configure --prefix=/usr/local/httpd --enable-module=so
make
make install
2.PHP5安装
命令列表如下:
cd /home/tmp
tar -zxvf php-5.2.0.tar.gz
mv php-5.2.0 php
cd php
./configure --prefix=/usr/local/php --with-apxs2=/usr/local/httpd/bin/apxs --with-config-file-path=/usr/local/lib --enable-track-vars --with-xml --with-mysql
make
make install
cp php.ini-dist /usr/local/lib/php.ini
注:如果没有不需要MYSql或者MySql没有安装.在configure时,去除--with-mysql选项。否则会出错
3.配置参数
vi /usr/local/httpd/conf/httpd.conf
对apache做如下配置
#将ServerAdmin admin@home.langchao.com一行改为您的邮箱地址
#Options FollowSymLinks MultiViews 为安全起见,去掉"Indexes"
#
# DirectoryIndex default.php default.phtml default.php3 default.html default.htm
#
#设置apache的默认文件名次序
#AddType application/x-httpd-php .php .phtml .php3 .inc .php4
#AddType application/x-httpd-php-source .phps
#设置php文件后缀
存盘退出
4.启动服务
/usr/local/httpd/bin/apachectl start
二、测试服务器
在apache的安装目录下找到htdocs文件夹。建立文件phptest.php。
用文本编辑器(notepad vim 等)写放如下信息:
Phpinfo();
?>
在地址栏上输入http://localhost/phptest.php。