Chinaunix首页 | 论坛 | 博客
  • 博客访问: 6456912
  • 博文数量: 579
  • 博客积分: 1548
  • 博客等级: 上尉
  • 技术积分: 16635
  • 用 户 组: 普通用户
  • 注册时间: 2012-12-12 15:29
个人简介

http://www.csdn.net/ http://www.arm.com/zh/ https://www.kernel.org/ http://www.linuxpk.com/ http://www.51develop.net/ http://linux.chinaitlab.com/ http://www.embeddedlinux.org.cn http://bbs.pediy.com/

文章分类

全部博文(579)

文章存档

2018年(18)

2015年(91)

2014年(159)

2013年(231)

2012年(80)

分类: LINUX

2014-04-15 19:07:00

操作系统:ubuntu12.04

前言:
    linux下,默认安装软件,在开发过程中会经常不知道到什么路径下找到所需的程序,因此手动安装程序对后续的使用会提供非常大的便利。在此,以安装apache为例。


一,准备
    1,安装 apr
        下载地址:

            [root@ubuntu:/work/soft/apache]# tar jxvf apr-1.5.0.tar.bz2

            [root@@ubuntu:/work/soft/apache/apr-1.5.0]# ./configure --prefix=/work/installed/apr

            [root@@ubuntu:/work/soft/apache/apr-1.5.0]# make

            [root@@ubuntu:/work/soft/apache/apr-1.5.0]# make install


    2,安装 apr-util
        下载地址:
            [root@ubuntu:/work/soft/apache]# tar jxvf  apr-util-1.5.3.tar.bz2

            [root@@ubuntu:/work/soft/apache/apr-util-1.5.3]# ./configure --prefix=/work/installed/apr-util --with-apr=/work/installed/apr

            [root@@ubuntu:/work/soft/apache/apr-util-1.5.3]# make

            [root@@ubuntu:/work/soft/apache/apr-util-1.5.3]# make install


    3,安装 pcre
        下载地址:
            [root@ubuntu:/work/soft/apache]# tar jxvf  pcre-8.35.tar.bz2

            [root@@ubuntu:/work/soft/apache/pcre-8.35]# ./configure --prefix=/work/installed/pcre

            [root@@ubuntu:/work/soft/apache/pcre-8.35]# make

            [root@@ubuntu:/work/soft/apache/pcre-8.35]# make install


        注意:如果在安装 pcre 时,遇到问题:configure: error: You need a C++ compiler for C++ support.
        解决方法sudo apt-get install build-essential


二,安装apache
        下载地址:
            [root@ubuntu:/work/soft/apache]# tar jxvf  httpd-2.4.9.tar.bz2

            [root@@ubuntu:/work/soft/apache/httpd-2.4.9]#  ./configure --prefix=/work/installed/apache --with-apr=/work/installed/apr --with-apr-util=/work/installed/apr-util --with-pcre=/work/installed/pcre

            [root@@ubuntu:/work/soft/apache/httpd-2.4.9]# make

            [root@@ubuntu:/work/soft/apache/httpd-2.4.9]# make install



三,配置
        1,修改配置文件
            否则会出现问题:
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message
            解决方法:
            [root@ubuntu:/work/installed/apache]# sudo gedit conf/httpd.conf 
            把:
                ServerName
            改为:
                ServerName localhost:80

    
        2,启动
            [root@ubuntu:/work/installed/apache]# ./bin/apachectl start
            

        3,开机启动
            打开文件:/etc/rc.local
            [root@ubuntu:/]# sudo gedit /etc/rc.local 

            添加:/work/installed/apache/bin/apachectl start
            

四,参考文件
1,http://blog.csdn.net/chenxiaohua/article/details/2047757
2,http://blog.163.com/hlz_2599/blog/static/142378474201182811611382/    

阅读(40626) | 评论(3) | 转发(3) |
给主人留下些什么吧!~~

andyhzw2015-04-15 09:58:57

stan_pcf:work 下面只有soft文件夹

其他目录应该是要自己mkdir的

回复 | 举报

stan_pcf2015-04-14 18:48:42

stan_pcf:我按照你的安装一直很顺利,但是到了配置的时候怎么没有/work/installed/apache这个文件夹

work 下面只有soft文件夹

回复 | 举报

stan_pcf2015-04-14 18:47:48

我按照你的安装一直很顺利,但是到了配置的时候怎么没有/work/installed/apache这个文件夹