码迷,mamicode.com
首页 > 其他好文 > 详细

源码安装

时间:2019-10-04 14:57:58      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:star   http   prefix   配置文件   重启   local   server   源码   curl   

配置:configure

编译:make

安装:make install

 

实例演示, 源码安装Apache:

  1、下载C编译器,用来编译C语言编写的源代码

    yum install -y gcc

  2、下载Apache源码

    curl -O http://mirrors.hust.edu.cn/apache//httpd/httpd-2.2.32.tar.gz

  3、解压下载的压缩包

    tar -zxvf httpd-2.2.32.tar.gz

  4、进入解压后的文件夹

    cd httpd-2.2.32

  5、编译前的配置

    ./configure --prefix=/usr/local/apache2

    配置选项:

      -h/--help:查看帮助

      --prefix:指定安装目录

  6、编译源代码

    make

  7、安装

    make install

  8、控制Apache软件

    控制命令:PREFIX/bin/apachectl

    控制操作:start | stop | restart 启动 | 关闭 | 重启

  9、配置文件:PREFIX/conf/httpd.conf

    去掉前面#, 将域名改为虚拟机Ip,如下

    ServerName IP:80

  10、设置防火墙

    service iptables status 查看防火墙状态

    service iptables start|stop 开启|关闭

源码安装

标签:star   http   prefix   配置文件   重启   local   server   源码   curl   

原文地址:https://www.cnblogs.com/longqin/p/11621911.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!