博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
apache源码安装
阅读量:6277 次
发布时间:2019-06-22

本文共 2014 字,大约阅读时间需要 6 分钟。

1.apr和apr-util,下载地址: http://apr.apache.org/download.cgi

yum install gccyum install libtoolyum install expat-develyum install pcre-develcd apr-1.6.3/./configure --prefix=/opt/apr

出现以下错误

rm: cannot remove 'libtoolT': No such file or directory 或 include/arch/unix/apr_private.h is unchange
cp configure ./configure.bakvi configure#$RM “$cfgfile”   #注释掉这行 :wq !./configure --prefix #重新执行上一次相同的命令 make -j 4 #四核运行 make install tar -zxvf apr-util-1.6.1.tar.bz2 #注意不要下载apr-util-1.6.1.tar.gz这个gz文件会出现安装错误 cd apr-util-1.6.1 ./configure --prefix=/opt/apr-util --with-apr=/opt/apr make && make instal

2. 下载安装pcre【如果以及yum安装则跳过此步】

wget https://ftp.pcre.org/pub/pcre/pcre2-10.30.tar.gztar -zxvf pcre2-10.30.tar.gzcd pcre2-10.30./configure --prefix=/opt/pcremake && make install或yum -y install pcre-devel

 3.安装apache

./configure --prefix=/opt/apache --with-apr=/opt/apr --with-apr-util=/opt/apr-util --with-include-apr --enable-somake && make install

4.你会发现apache stop|restart|start都不成功

Could not reliably determine the server's fully qualified domain name

解决办法

vi httpd.conf#ServerName www.example.com:80 #修改为ServerName localhost:80

5.将apache设定为开机启动

注册Apache到Linux服务

在Linux下用源代码方式编译安装完Apache后,启动关闭Apache可以通过如下命令实现:

/opt/apache/bin/apachectl start|stop|restart

加入开机启动

cp /opt/apache/bin/apachectl  /etc/rc.d/init.d/httpd #链接文件的S61是启动时的序号。#当init.d目录下有httpd脚本后,我们就可以通过service命令来启动关闭apache了。ln -s /etc/rc.d/init.d/httpd  /etc/rc.d/rc3.d/S61httpdservice httpd start | stop | restart

这时有个问题就是:虽然apache已经可以自动启动,但在linux的服务列表中却看不到它,要添加服务,一般通过chkconfig --add xxx来实现,但需要脚本中有相应的信息才行,否则chkconfig就会提示:xxx 服务不支持 chkconfig。所以我们首先编辑httpd脚本,在第2行(#!/bin/sh下面)添加如下注释信息(包括#):

vi /etc/rc.d/init.d/httpd# chkconfig: 35 61 61# description: Apache

第一行的3个参数意义分别为:在哪些运行级别启动httpd(3,5);启动序号(S61);关闭序号(K61)。注意:第二行的描述必须要写!保存后执行:

chkconfig --add httpd #所有开机模式下自启动,另外chkconfig httpd on 表示345模式下自启动

就将httpd添加入服务了。在rc3.d、rc5.d路径中将来就会出现S61httpd的链接,其他运行级别路径中会出现K61httpd的链接。

运行下面的命令查看服务,就可以看到httpd的服务了。

chkconfig --list

 

转载于:https://www.cnblogs.com/adtuu/p/8284408.html

你可能感兴趣的文章
Spark修炼之道(进阶篇)——Spark入门到精通:第五节 Spark编程模型(二)
查看>>
一线架构师实践指南:云时代下双活零切换的七大关键点
查看>>
ART世界探险(19) - 优化编译器的编译流程
查看>>
玩转Edas应用部署
查看>>
music-音符与常用记号
查看>>
sql操作命令
查看>>
zip 数据压缩
查看>>
Python爬虫学习系列教程
查看>>
【数据库优化专题】MySQL视图优化(二)
查看>>
【转载】每个程序员都应该学习使用Python或Ruby
查看>>
PHP高级编程之守护进程,实现优雅重启
查看>>
PHP字符编码转换类3
查看>>
rsync同步服务配置手记
查看>>
http缓存知识
查看>>
Go 时间交并集小工具
查看>>
iOS 多线程总结
查看>>
webpack是如何实现前端模块化的
查看>>
TCP的三次握手四次挥手
查看>>
关于redis的几件小事(六)redis的持久化
查看>>
package.json
查看>>