LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
123
返回列表 发新帖
楼主: boy

成功安装httpd-2.0.45(apache) + php-4.3.1 + mysql-3.23.56 + ZendOptimiz-2.1

[复制链接]
发表于 2003-7-30 21:53:32 | 显示全部楼层

我按照BOY的方法用在apache2.0.47+php4.3.2+mysql4.0.14成功了,不过在启动MYSQL时要

一、准备安装
将所有软件的源代码放置在目录 /home/src 下 ,安装目录为 /server ,下载后的源代码包在/files目录下,故执行以下操作:
mkdir /home/src
mkdir /server
groupadd mysql
useradd -g mysql -d /home/mysql mysql //建立mysql组及用户
cd /home/src
tar zxvf /files/mysql-4.0.14.tar.gz
tar zxvf /files/httpd-2.0.47.tar.gz
tar zxvf /files/php-4.3.2.tar.gz
tar zxvf /files/ZendOptimizer-2[1].1.0a-Linux_glibc21-i386.tar

二、安装配置过程
使用 vi 编辑一个名为shell的文件,把shell文件放在/root目录下,用vi编辑好文件后在执行#/root/sh shell就行了!!

           shell的内容如下: (复制并编辑一个脚本文件,内容如下)
-----------------------------------
#!/bin/sh
cd /home/src/mysql-4.0.14
./configure --prefix=/server/mysql
make
make install
/server/mysql/bin/mysql_install_db

chown -R root /server/mysql
chgrp -R mysql /server/mysql

chown -R root /server/mysql/bin
chgrp -R mysql /server/mysql/bin

chown -R root /server/mysql/var
chgrp -R mysql /server/mysql/var
chmod 777 /server/mysql/var

chown -R root /server/mysql/var/mysql
chgrp -R mysql /server/mysql/var/mysql
chmod 777 /server/mysql/var/mysql

chown -R root /server/mysql/var/mysql/*
chgrp -R mysql /server/mysql/var/mysql/*
chmod 777 /server/mysql/var/mysql/*

chmod 777 /server/mysql/lib/mysql/libmysqlclient.a
#安装 mysql-3.23.56

cd /home/src/httpd-2.0.47
./configure --prefix=/server/apache --enable-so
make
make install
#安装 httpd-2.0.47

cd /home/src/php-4.3.2
./configure --with-mysql=/server/mysql --with-apxs2=/server/apache/bin/apxs \
--enable-track-vars --enable-force-cgi-redirect --enable-pic \
--enable-inline-optimiation --enable-memory-limit --enable-bcmath \
--enable-shmop --enable-versioning \
-enable-calendar --enable-dbx --enable-dio --enable-mcal \
--with-config-file-path=/server/apache/conf
make
make install
cp php.ini-dist /server/apache/conf/php.ini
#安装php-4.3.1 ,以上某些模块可不使用,--with-config-file-path=/server/apache/conf 指定
#php的配置文件在目录 /server/apache/conf

ln -s /server/apache/bin/apachectl /bin/apache
ln -s /server/mysql/bin/mysql /bin/mysql
#创建符号连接
----------------------------------------------------



#以上是shell的内容!!!




三、修改配置文件
vi /server/apache/conf/httpd.conf
# 加入以下行(装载php4模块并指定.php 文件)
# LimitRequestBody (指定php处理的请求数据大小,以下指定为 20M)

LoadModule php4_module modules/libphp4.so
<Files *.php>
SetOutputFilter PHP
SetInputFilter PHP
LimitRequestBody 20971520
</Files>

#注解以下行(在文本前加#),使apache显示中文,具体原因未知
ForceLanguagePriority Prefer Fallback
AddDefaultCharset ISO-8859-1 改为AddDefaultCharset gb2312

#加入默认的引导文件index.php(找到DirectoryIndex,修改如下:)
DirectoryIndex index.html index.html.var index.php

#指定网站目录(假设为 /apache 目录)
DocumentRoot "/apache"

vi /server/apache/conf/php.ini
#找到并修改以下参数
max_execution_time = 600 ;最大运行时间 600 秒
max_input_time = 600 ;最大输出时间 600秒
memory_limit = 20M ;最大内存限制 20M
file_uploads = On ;允许上载文件
upload_max_filesize = 20M ;最大文件大小 20M
post_max_size = 20M ;php可接受的 post 方法大小 20M
session.auto_start = 1 ;session自动启动
register_globals = Off 改为 register_globals = On

四、运行

#启动mysql
/server/mysql/bin/mysqld_safe --user=mysql &

#停止mysql
/server/mysql/bin/mysqladmin shutdown

#启动apache
apache start

#停止apache
apache stop

mkdir /apache
echo "<?" >/apache/index.php
echo "phpinfo();" >>/apache/index.php
echo "?>" >>/apache/index.php
#生成/apache/index.php 文件

在浏览器上输入 linux 机器网址,php 的配置信息将显示出来。
发表于 2003-7-31 17:41:03 | 显示全部楼层
cd /home/src/php-4.3.2
./configure --with-mysql=/server/mysql --with-apxs2=/server/apache/bin/apxs \
--enable-track-vars --enable-force-cgi-redirect --enable-pic \
--enable-inline-optimiation --enable-memory-limit --enable-bcmath \
--enable-shmop --enable-versioning \
-enable-calendar --enable-dbx --enable-dio --enable-mcal \
--with-config-file-path=/server/apache/conf
make
make install
warning dlname not found in /server/apache/nodules/libphp4.la
assuming installing a .so ranther a libtool archive
chmod 755 /server/apache/moudules/libphp4.so
chmod failed to get attributes of /server/apachemodules/libphp4.so :' no such file or dirctory
apax:Error :command failed with rc=65536
make:**** install-sapi error 1
我认为你们是不是什么地方没有写清楚呀,大虾,我换了好几个版本的PHP都有这个问题,我的环境与你们的一样怎么老是出这个问题,大虾,有好的解决方法呀,
发表于 2003-8-1 08:47:21 | 显示全部楼层
cd /home/src/php-4.3.2
./configure --with-mysql=/server/mysql --with-apxs2=/server/apache/bin/apxs \
--enable-track-vars --enable-force-cgi-redirect --enable-pic \
--enable-inline-optimiation --enable-memory-limit --enable-bcmath \
--enable-shmop --enable-versioning \
-enable-calendar --enable-dbx --enable-dio --enable-mcal \
--with-config-file-path=/server/apache/conf
make
make install
warning dlname not found in /server/apache/nodules/libphp4.la
assuming installing a .so ranther a libtool archive
chmod 755 /server/apache/moudules/libphp4.so
chmod failed to get attributes of /server/apachemodules/libphp4.so :' no such file or dirctory
apax:Error :command failed with rc=65536
make:**** install-sapi error 1
我认为你们是不是什么地方没有写清楚呀,大虾,我换了好几个版本的PHP都有这个问题,我的环境与你们的一样怎么老是出这个问题,大虾,有好的解决方法吗?
发表于 2003-8-25 21:44:55 | 显示全部楼层
最初由 tian_005 发表
cd /home/src/php-4.3.2
./configure --with-mysql=/server/mysql --with-apxs2=/server/apache/bin/apxs \
--enable-track-vars --enable-force-cgi-redirect --enable-pic \
--enable-inline-optimiation --enable-memory-limit --enable-bcmath \
--enable-shmop --enable-versioning \
-enable-calendar --enable-dbx --enable-dio --enable-mcal \
--with-config-file-path=/server/apache/conf
make
make install
warning dlname not found in /server/apache/nodules/libphp4.la
assuming installing a .so ranther a libtool archive
chmod 755 /server/apache/moudules/libphp4.so
chmod failed to get attributes of /server/apachemodules/libphp4.so :' no such file or dirctory
apax:Error :command failed with rc=65536
make:**** install-sapi error 1
我认为你们是不是什么地方没有写清楚呀,大虾,我换了好几个版本的PHP都有这个问题,我的环境与你们的一样怎么老是出这个问题,大虾,有好的解决方法呀,






偶开始时和你一样出现这个错误,后来仔细检查发现APACHE已经装装了libphp4.so这个模块,你是应该已经启动了APACHE的情况下来MAKE INSTLLL那个PHP的。告诉你,先把APACHE停下来,然后再MAKE INSTALL就行了。。。。偶也是这样成功的。偶是装(APACHE 2.0.47 + PHP4.3.2 + MySQL 4.1 Alpha release)


LoadModule php4_module modules/libphp4.so
<Files *.php>
SetOutputFilter PHP
SetInputFilter PHP
LimitRequestBody 20971520
</Files>

注意:上面的这部份改成这下面的才能运行PHP

LoadModule php4_module modules/libphp4.so
#AddType application/x-httpd-php .php .phtml
<Files *.php>
SetOutputFilter PHP
SetInputFilter PHP
LimitRequestBody 20971520
</Files>
发表于 2003-8-26 15:54:58 | 显示全部楼层
能否在大部分执行语句的后面都加上点"注解",我是新手,别骂我
发表于 2003-10-24 14:15:30 | 显示全部楼层
zend到底怎么装和配置呀?

用ssh远程管理的服务器!
有什么特别要注意的吗??
发表于 2003-10-27 17:13:24 | 显示全部楼层
我现在通过ssh装不上zend 呀!~~

怎么装呀!
急!~~~
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表