安装Apache时可能会遇到的问题

1、configure错误提示1:

configure:error: in `/usr/local/src/httpd-2.2.21/srclib/apr‘:

configure:error: no acceptable C compiler found in $PATH

See `config.log‘for more details.

解决方法: yum install -y gcc

2、configure错误提示2:

checking whether to enable mod_deflate... configure: error: mod_deflate has been requested but can not be built due to prerequisite failures

解决方法:yum install -y zlib-devel

时间: 2024-10-20 17:01:39

安装Apache时可能会遇到的问题的相关文章

安装Apache时,端口80被占用情况的处理

今天安装Apache,端口80被占用,网上寻找的办法不靠谱..现将本方法分享给大家共勉! win+R启动“运行” 输入 netstat -abno查看: 经过查找pid=4的进程 Ctrl+Shif+Esc启动任务管理器 勾选”显示所有用户的进程” 查看得知因为是系统进程,无法终止. 经查:SQL Server ReportingServices(SQLEXPRESS)服务占用80端口, 停止SQL Server ReportingServices(SQLEXPRESS)服务后,更改其为手动,

在安装apache时遇到的困难

httpd: Could not reliably determine the server's fully qualified domain name 在linux下进入到httpd.conf 文件中,然后修改 [[email protected] conf]# vi httpd.conf#ServerName www.example.com:80ServerName localhost:80 之后重启apache服务

centos下编译安装apache时不能用pcre2吗?

./configure --prefix=/usr/local/apache2 --with-apr=/usr/local/apr-1.5.2/ --with-apr-util=/usr/local/apr-util-1.5.4/ --enable-so --enable-deflate=shared --enable-expires=shared --enable-rewrite=shared --with-pcre=/usr/local/pcre2/bin/pcre2-config 配置通过

ubuntu 下安装 apache php mysql

ubuntu 安装 apache+php+mysql1.打开终端,输入"sudo apt-get install apache2",回车;(安装apache2.0或2.x新版本,系统会自动查找新的版本)2.如有密码请再输入管理员密码,回车3.输入"Y",回车4.apache2.X 安装完成5.验证apache2.x安装是否完成,在浏览器中打开http://localhost/或者http://127.0.0.1.如果出现It works!那证明成功;6.打开终端,输

在CentOS 6上安装Apache和PHP

本文演示如何在CentOS 6上安装Apache和PHP.CentOS 6自带的是Apache 2.2.3和PHP 5.1.6,您可以使用默认的CentOS包管理器进行安装yum.使用yum(而不是使用源代码进行安装)的优点在于您可以获得任何安全更新(分发时),并且依赖关系被自动处理. 安装Apache 运行以下命令: sudo yum install httpd mod_ssl 因为服务器在安装Apache时不会自动启动,所以必须手动启动它. sudo /usr/sbin/apachectl

Linux中安装apache

一.前言 安装的背景就是公司项目要用,自己在linux安装软件不多,过程比较曲折,需要记录一下(最近几篇博客好像都会有这种高大上的背景)~先说下笔者安装环境以及相关软件版本: 操作系统:RedHat Enterprise Linux Server release 5.8 (Tikanga) apache:httpd-2.4.25.tar.gz apr:apr-1.5.2.tar.gz apr-util:apr-util-1.5.4.tar.gz pcre:pcre-8.40.tar.gz 二.正

centos中安装apache,文本内容部分原创

环境:centos6.7,ip地址:192.168.1.174 1.此次操作为首次安装apache,如果之前安装过需要先行将已存在的相关文件删除以免冲突. 2.下载Apache安装包(httpd-2.4.3.tar.gz或httpd-2.2.23.tar.gz),下载地址:http://httpd.apache.org/在安装Apache时,只安装了2.4.*版本. httpd-2.2.23版本编译命令: ./configure --prefix=/usr/local/apache2 (安装目录

linux 安装 apache

安装Apache前准备: 一.检查该环境中是否已经存在httpd服务的配置文件,默认存储路径:/etc/httpd/httpd.conf(这是centos预装的Apache的一个ent版本,一般我们安装源代码版的Apache).如果已经存在/etc/httpd/httpd.conf,请先卸载或者关闭centos系统自带的web服务,执行命令:chkconfig  httpd off,再或者把centos自带的httpd服务的80端口改为其他端口,只要不与我们安装的Apache服务的端口冲突就可以

【问题记录】 Linux 安装 apache 遇到的一些问题

以下为linux上安装apache时自己遇到的一些问题,记录在这,以后遇到时也会不定时更新... 一.安装Apache提示APR not found的解决办法 解决方法: 1. 网站 http://apr.apache.org/download.cgi 下载 apr-1.5.1.tar.gz .apr-util-1.5.4.tar.gz 2. 网站 http://www.pcre.org/ 下载 pcre-8.36.tar.gz 3.依次解压.安装 附相关命令: 1 [[email protec