zoukankan      html  css  js  c++  java
  • Ubuntu 16.04 源码编译安装PHP7

    一、下载PHP7的最新版源码

    php7.0.9  下载地址 http://php.net/get/php-7.0.9.tar.gz/from/a/mirror

    二、解压

    tar -zxf /tmp/php-7.0.9.tar.gz

    三、安装相关依赖库

    sudo apt-get update
    sudo apt-get install libxml2-dev
    #安装gcc
    sudo apt-get install build-essential
    sudo apt-get install openssl 
    sudo apt-get install libssl-dev 
    sudo apt-get install make
    sudo apt-get install curl
    sudo apt-get install libcurl4-gnutls-dev
    sudo apt-get install libjpeg-dev
    sudo apt-get install libpng-dev
    sudo apt-get install libmcrypt-dev
    sudo apt-get install libreadline6 libreadline6-dev

    四、编译:(编译参数2个中选择一个,第一段大部分机器即可编译,第二段参数推荐64位x86系统编译)

    cd /tmp/php-7.0.9
    ./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --enable-fpm --with-fpm-user=www --with-fpm-group=www --with-mysqli --with-pdo-mysql --with-iconv-dir --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --enable-mbregex --enable-mbstring --with-mcrypt --enable-ftp --with-gd --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --without-pear --with-gettext --disable-fileinfo --enable-maintainer-zts
    cd /tmp/php-7.0.9
    ./configure --prefix=/usr/local/php --enable-fpm --enable-inline-optimization --disable-debug --disable-rpath --enable-shared --enable-opcache --with-mysql --with-mysqli --with-mysql-sock --enable-pdo --with-pdo-mysql --with-gettext --enable-mbstring --with-iconv --with-mcrypt --with-mhash --with-openssl --enable-bcmath --enable-soap --with-libxml-dir --enable-pcntl --enable-shmop --enable-sysvmsg --enable-sysvsem --enable-sysvshm --enable-sockets --with-curl --with-zlib --enable-zip --enable-bz2 --with-readline --without-sqlite3 --without-pdo-sqlite --with-pear --with-libdir=/lib/x86_64-linux-gnu --with-gd --with-jpeg-dir=/usr/lib --enable-gd-native-ttf --enable-xml

    五、执行make 和 sudo make install 安装

    make && sudo make install

    六、配置php-fpm

    cd /usr/local/php/etc
    
    cp php-fpm.conf.default php-fpm.conf
    
    cd /usr/local/php/etc/php-fpm.d
    
    cp www.conf.default www.conf
    
    user = www
    group = www
    
    如果www用户不存在,那么先添加www用户
    groupadd www
    useradd -g www www

    七、验证PHP

    /usr/local/php/bin/php -v

    八、启动php-fpm

    sudo /usr/local/php/sbin/php-fpm
  • 相关阅读:
    JDBC_增删改
    JSP内置对象作用域
    497. Random Point in Non-overlapping Rectangles
    921. Minimum Add to Make Parentheses Valid
    946. Validate Stack Sequences
    824. Goat Latin
    Acwing 165 小猫爬山 (dfs)
    Codeforces #656 Problem D
    Codeforces #656 Problem C
    对象属性拷贝工具类大全
  • 原文地址:https://www.cnblogs.com/rnckty/p/5741859.html
Copyright © 2011-2022 走看看