Chinaunix首页 | 论坛 | 博客
  • 博客访问: 55615
  • 博文数量: 15
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 161
  • 用 户 组: 普通用户
  • 注册时间: 2021-01-30 15:24
个人简介

愿做一条咸鱼,日常摸鱼。

文章分类

全部博文(15)

文章存档

2023年(1)

2021年(14)

我的朋友

分类: LINUX

2021-02-07 17:51:42

centos7 编译安装php7.1步骤:
1、安装依赖包:
    yum install libxml2 libxml2-devel openssl openssl-devel bzip2 bzip2-devel libcurl libcurl-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel gmp gmp-devel libmcrypt libmcrypt-devel readline readline-devel libxslt libxslt-devel zlib zlib-devel glibc glibc-devel glib2 glib2-devel ncurses curl gdbm-devel db4-devel libXpm-devel libX11-devel gd-devel gmp-devel expat-devel xmlrpc-c xmlrpc-c-devel libicu-devel libmcrypt-devel libmemcached-devel gcc 

2、下载安装包以及解压(如果wget下载速度太慢,可用迅雷下载,然后用ftp上传)
    wget
    tar -zxvf php-7.1.0.tar.gz 
    cd php-7.1.0 

3、编译(./configure --help 查看编译参数)  
    ./configure --prefix=/usr/local/php --with-config-file-path=/etc --enable-fpm 
--with-fpm-user=www --with-fpm-group=www --enable-inline-optimization 
--disable-debug --disable-rpath --enable-shared --enable-soap --with-libxml-dir --with-xmlrpc --with-openssl --with-mcrypt --with-mhash --with-pcre-regex 
--with-sqlite3 --with-zlib --enable-bcmath --with-iconv --with-bz2 --enable-calendar --with-curl --with-cdb --enable-dom --enable-exif --enable-fileinfo 
--enable-filter --with-pcre-dir --enable-ftp --with-gd --with-openssl-dir --with-jpeg-dir --with-png-dir --with-zlib-dir --with-freetype-dir --enable-gd-native-ttf --enable-gd-jis-conv --with-gettext --with-gmp --with-mhash --enable-json --enable-mbstring --enable-mbregex --enable-mbregex-backtrack --with-libmbfl --with-onig --enable-pdo --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-zlib-dir --with-pdo-sqlite --with-readline --enable-session --enable-shmop --enable-simplexml --enable-sockets  --enable-sysvmsg            
--enable-sysvsem --enable-sysvshm --enable-wddx --with-libxml-dir --with-xsl 
--enable-zip --enable-mysqlnd-compression-support --with-pear --enable-opcache

4、安装
    make && make install

5、查看安装好的php
    /usr/local/php/bin/php -v

6、php添加到环境变量中
    vim /etc/pofile
    然后把以下内容加入到文件的最后面:
    PATH=$PATH:/usr/local/php/bin
    export PATH
    再保存,最后执行source /etc/profile更新环境变量
    执行php -v 就可以查看php的版本了

7、配置php-fpm
    cp php.ini-production /etc/php.ini
    cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf
    cp /usr/local/php/etc/php-fpm.d/ /usr/local/php/etc/php-fpm.d/
    cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
    chmod +x /etc/init.d/php-fpm
    启动php-fpm:
    /etc/init.d/php-fpm start(可把php-fpm也加入到环境变量中,同上)

    如果报这种错误:Starting php-fpm [12-May-2018 20:09:45] ERROR: [pool www] cannot get uid for user 'www'
    说明没有该用户,直接执行
    groupadd www
    useradd -g www www
    执行完之后再启动php-fpm就可以了

8、编译的时候可能出现的报错:
    configure: error: mcrypt.h not found. Please reinstall libmcrypt.
    解决方法:
    yum install -y epel-release
    yum install -y libmcrypt-devel
    这样,在centos7中php7.1就安装成功了!

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