怎样架设linux下的apache服务器?

发布于 2022-07-22 06:16:41 字数 2775 浏览 5 评论 0

我用的是linuxas3版,gd库有zlib、libpng、freetype、jpeg、gd,以上的顺序也是我安装的顺序,libpng的makefile是拷贝的源文件下的makefile.linux文件,安装jpeg前都是手工创建的jpeg、bin、lib、include、man、man1等文件夹,还有--shared-enable参数。其他的文件都是除了指定安装目录之外就没有别的参数了。之后我装了curl、libiconv、mysql、apache1.3.36、php4.
以下是apache的设置参数
./configure
--prefix=/usr/local/web/apache1.3.36
--enable-module=so
--disable-module=rewrite
--disable-module=expires
--enable-module=log_config
--enable-module=dir
--disable-module=access
--disable-module=setenvif
--disable-module=alias
--enable-module=mime
--disable-module=headers
--disable-module=actions
--disable-module=auth
--disable-module=proxy
--disable-module=autoindex
--disable-module=env
--disable-module=cgi
--disable-module=asis
--disable-module=include
--disable-module=status
--disable-module=negotiation
--disable-module=imap
--disable-module=userdir
--disable-module=negotiation
这是mysql的参数
./configure --prefix=/usr/local/mysql-client
--with-mysqld-ldflags=-all-static
--without-debug
--without-isam
--without-innodb
--with-mysqld-ldflags=-all-static
--with-client-ldflags=-all-static
--disable-shared
--enable-assembler
--with-charset=gbk
--with-extra-charsets=none
这是php的参数
./configure --prefix=/home/zhaohy/server/php
--with-apxs=/home/zhaohy/server/apache/bin/apxs
--with-iconv=/home/zhaohy/server/iconv
--enable-mbstring=all
--enable-mbregex
--enable-calendar
--with-curl=/home/zhaohy/server/curl
--with-mysql=/home/zhaohy/server/mysql
--with-gd=/home/zhaohy/server/gd
--with-zlib-dir=/home/zhaohy/server/zlib
--with-jpeg-dir=/home/zhaohy/server/jpeg
--with-png-dir=/home/zhaohy/server/zlib
--with-freetype-dir=/home/zhaohy/server/freetype
但我用下面的参数配置php时
./configure
--enable-mbstring=all
--enable-mbregex
--enable-calendar
--with-png-dir=/home/zhaohy/server/png
--with-zlib-dir=/home/zhaohy/server/zlib
--with-apxs=/home/zhaohy/server/apache/bin/apxs
--prefix=/home/zhaohy/server/php
--with-curl=/home/zhaohy/server/curl
--with-gd=/home/zhaohy/server/gd
--with-mysql=/home/zhaohy/server/mysql
--with-iconv=/home/zhaohy/server/iconv
--with-jpeg-dir=/home/zhaohy/server/jpeg
--with-freetype-dir=/home/zhaohy/server/freetype
总提示我找不到libjpeg.
大家清忽略以上参数种目录的不同,这戏参数我是粘贴过来的。我只想问一下问题。
我的安装顺序是否有问题?
我的参数设置是否有问题?
安装好后我怎样测试我安装的各个包是否正确?
所有的包都安装好后我怎样测试所有的服务都可以正常工作了?
我是一个刚开始学习系统管理的新手,希望大家多多指点!
谢谢!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文