当前位置 主页 > 服务器问题 > nginx问题汇总 >

    CentOS 7.0编译安装lnmp教程(Nginx1.6.0+MySQL5.6.19+PHP5.5.14)(4)

    栏目:nginx问题汇总 时间:2019-02-22 16:10

    :wq! #保存退出
    chmod 775 /etc/rc.d/init.d/nginx #赋予文件执行权限
    chkconfig nginx on #设置开机启动
    /etc/rc.d/init.d/nginx restart #重启
    在浏览器中打开服务器IP地址,会看到下面的界面,说明Nginx安装成功。

    三、安装php

    1、安装yasm

    cd /usr/local/src
    tar zxvf yasm-1.2.0.tar.gz
    cd yasm-1.2.0
    ./configure
    make
    make install

    2、安装libmcrypt

    cd /usr/local/src
    tar zxvf libmcrypt-2.5.8.tar.gz
    cd libmcrypt-2.5.8
    ./configure
    make
    make install

    3、安装libvpx

    cd /usr/local/src
    tar xvf libvpx-v1.3.0.tar.bz2
    cd libvpx-v1.3.0
    ./configure --prefix=/usr/local/libvpx --enable-shared --enable-vp9
    make
    make install

    4、安装tiff

    cd /usr/local/src
    tar zxvf tiff-4.0.3.tar.gz
    cd tiff-4.0.3
    ./configure --prefix=/usr/local/tiff --enable-shared
    make
    make install

    5、安装libpng

    cd /usr/local/src
    tar zxvf libpng-1.6.12.tar.gz
    cd libpng-1.6.12
    ./configure --prefix=/usr/local/libpng --enable-shared
    make
    make install

    6、安装freetype

    cd /usr/local/src
    tar zxvf freetype-2.5.3.tar.gz
    cd freetype-2.5.3
    ./configure --prefix=/usr/local/freetype --enable-shared
    make #编译
    make install #安装

    7、安装jpeg

    cd /usr/local/src
    tar zxvf jpegsrc.v9a.tar.gz
    cd jpeg-9a
    ./configure --prefix=/usr/local/jpeg --enable-shared
    make #编译
    make install #安装

    8、安装libgd

    cd /usr/local/src
    tar zxvf libgd-2.1.0.tar.gz #解压
    cd libgd-2.1.0 #进入目录
    ./configure --prefix=/usr/local/libgd --enable-shared --with-jpeg=/usr/local/jpeg --with-png=/usr/local/libpng --with-freetype=/usr/local/freetype --with-fontconfig=/usr/local/freetype --with-xpm=/usr/ --with-tiff=/usr/local/tiff --with-vpx=/usr/local/libvpx #配置
    make #编译
    make install #安装

    9、安装t1lib

    cd /usr/local/src
    tar zxvf t1lib-5.1.2.tar.gz
    cd t1lib-5.1.2
    ./configure --prefix=/usr/local/t1lib --enable-shared
    make without_doc
    make install

    10、安装php

    注意:如果系统是64位,请执行以下两条命令,否则安装php会出错(32位系统不需要执行)
    \cp -frp /usr/lib64/libltdl.so*  /usr/lib/
    \cp -frp /usr/lib64/libXpm.so* /usr/lib/
    cd /usr/local/src
    tar -zvxf php-5.5.14.tar.gz
    cd php-5.5.14
    export LD_LIBRARY_PATH=/usr/local/libgd/lib
    ./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-mysql-sock=/tmp/mysql.sock --with-pdo-mysql=/usr/local/mysql --with-gd --with-png-dir=/usr/local/libpng --with-jpeg-dir=/usr/local/jpeg --with-freetype-dir=/usr/local/freetype --with-xpm-dir=/usr/ --with-vpx-dir=/usr/local/libvpx/ --with-zlib-dir=/usr/local/zlib --with-t1lib=/usr/local/t1lib --with-iconv --enable-libxml --enable-xml --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --enable-opcache --enable-mbregex --enable-fpm --enable-mbstring --enable-ftp --enable-gd-native-ttf --with-openssl --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --without-pear --with-gettext --enable-session --with-mcrypt --with-curl --enable-ctype   #配置