lamp搭建

1、软件包准备:

    autoconf-2.61.tar.gz   
    mysql-5.0.41.tar.gz
    freetype-2.3.5.tar.gz   
    ncurses-5.6.tar.gz
    gd-2.0.35.tar.gz       
    php-5.2.6.tar.gz
    httpd-2.2.9.tar.gz
    jpegsrc.v6b.tar.gz      
    phpMyAdmin-3.0.0-rc1-all-languages.tar.gz
    libmcrypt-2.5.8.tar.gz
    libpng-1.2.31.tar.gz
    ZendOptimizer-3.2.6-linux-glibc21-i386.tar.gz
    libxml2-2.6.30.tar.gz   
    zlib-1.2.3.tar.gz


2、编写一个简单的shell脚本解压缩:
        cd /home/liu/lamp
        ls *.tar.gz > ls.list
                   
        for TAR in `cat ls.list`
        do
        tar -zxf $TAR
        done
3、编译
    a ./configure
    b make
    c make install
4、编译脚本(顺序以及配置项)
 
#    cd /lamp/libxml2-2.6.30
    ./configure --prefix=/usr/local/libxml2/
    make  
    make install
      
#    cd /lamp/libmcrypt-2.5.8
    ./configure --prefix=/usr/local/libmcrypt/
    make  
    make install
 
#    cd /lamp/libmcrypt-2.5.8/libltdl
    ./configure --enable-ltdl-install
    make
    make install
 
#    cd /lamp/zlib-1.2.3
    ./configure
    make
    make install  
 
#    cd /lamp/libpng-1.2.31
    ./configure --prefix=/usr/local/libpng/
    make
    make install
 
#    mkdir /usr/local/jpeg6
    mkdir /usr/local/jpeg6/bin
    mkdir /usr/local/jpeg6/lib
    mkdir /usr/local/jpeg6/include
    mkdir -p /usr/local/jpeg6/man/man1
    cd /lamp/jpeg-6b
    ./configure --prefix=/usr/local/jpeg6/ --enable-shared --enable-static
    make
    make install
 
#    cd /lamp/freetype-2.3.5
    ./configure --prefix=/usr/local/freetype/
    make
    make install
 
#    cd /lamp/autoconf-2.61
    ./configure
    make  
    make install
      
#    cd /lamp/gd-2.0.35
    ./configure --prefix=/usr/local/gd2/ --with-jpeg=/usr/local/jpeg6/ --with-freetype=/usr/local/freetype/
    make
    make install
 
#    cd /lamp/httpd-2.2.9
    ./configure --prefix=/usr/local/apache2/ --sysconfdir=/etc/httpd/ --with-included-apr --disable-userdir --enable-so --enable-deflate=shared --enable-expires=shared --enable-rewrite=shared --enable-static-support
    make
    make install
      
    /usr/local/apache2/bin/apachectl start
    echo "/usr/local/apache2/bin/apachectl start" >> /etc/rc.d/rc.sysinit
 
#    cd /lamp/ncurses-5.6
    ./configure --with-shared --without-debug --without-ada --enable-overwrite
    make  
    make install
 
    groupadd mysql
    useradd -g mysql mysql
#    cd /lamp/mysql-5.0.41
    ./configure --prefix=/usr/local/mysql/ --with-extra-charsets=all
    make
    make install
 
    cp support-files/my-medium.cnf /etc/my.cnf
    /usr/local/mysql/bin/mysql_install_db --user=mysql
    chown -R root /usr/local/mysql
    chown -R mysql /usr/local/mysql/var
    chgrp -R mysql /usr/local/mysql
 
    /usr/local/mysql/bin/mysqld_safe  --user=mysql &
 
    cp /lamp/mysql-5.0.41/support-files/mysql.server /etc/rc.d/init.d/mysqld
    chown root.root /etc/rc.d/init.d/mysqld
    chmod 755 /etc/rc.d/init.d/mysqld
    chkconfig --add mysqld
    chkconfig --list mysqld
    chkconfig --levels 245 mysqld off
      
    cd /lamp/php-5.2.6
    ./configure --prefix=/usr/local/php/ --with-config-file-path=/usr/local/php/etc/ --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql=/usr/local/mysql/ --with-libxml-dir=/usr/local/libxml2/ --with-jpeg-dir=/usr/local/jpeg6/ --with-freetype-dir=/usr/local/freetype/ --with-gd=/usr/local/gd2/ --with-mcrypt=/usr/local/libmcrypt/ --with-mysqli=/usr/local/mysql/bin/mysql_config --enable-soap --enable-mbstring=all --enable-sockets  
    make
    make install
 
#####这里可能出现libltdl.so.3缺失,这是由于php版本的问题,
#####执行cp /usr/local/lib/libltdl.so.3 /usr/lib/libltdl.so.3
    cp php.ini-dist /usr/local/php/etc/php.ini
    echo "Addtype application/x-httpd-php .php .phtml" >> /etc/httpd/httpd.conf
    /usr/local/apache2/bin/apachectl restart
 
 
 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值