raspbian php,Raspbian 编译安装 PHP 7.2

0x00 配置

开发板: Raspberry Pi 3B 系统: Raspbian 2019-04-08 stretch

0x01 下载源码

2019 年 5 月最新的 PHP 7.2 版本号是 7.2.18

wget https://www.php.net/distributions/php-7.2.18.tar.gz

tar zxvf php-7.2.18.tar.gz

0x02 安装依赖包

这里包含了依赖包以及开发工具

apt install libkrb5-dev \

libc-client2007e \

libc-client2007e-dev \

libcurl4-openssl-dev \

libbz2-dev \

libjpeg-dev \

libmcrypt-dev \

libxslt1-dev \

libxslt1.1 \

libpq-dev \

libgmp-dev \

libreadline-dev \

build-essential \

git \

make

0x03 建立库文件的软链接

在 Raspbian 中编译 PHP 的时候会出现找不到某些库的问题,但实际上已经安装了这些库,只需要建立相应的软链接即可

mkdir /usr/c-client/

ln -s /usr/lib/libc-client.a /usr/c-client/

mkdir /usr/kerberos

ln -s /usr/lib/arm-linux-gnueabihf/mit-krb5/* /usr/kerberos

0x04 编译安装

首先进行配置,指定安装位置,配置文件位置以及需要安装的模块等

./configure \

--prefix=/usr/local/php \

--with-config-file-path=/etc \

--with-zlib-dir \

--with-freetype-dir \

--enable-mbstring \

--with-libxml-dir=/usr \

--enable-soap \

--enable-calendar \

--with-curl \

--with-zlib \

--with-gd \

--disable-rpath \

--enable-inline-optimization \

--with-bz2 \

--with-zlib \

--enable-sockets \

--enable-sysvsem \

--enable-sysvshm \

--enable-pcntl \

--enable-mbregex \

--enable-exif \

--enable-bcmath \

--with-mhash \

--enable-zip \

--with-pcre-regex \

--with-pdo-mysql \

--with-mysqli \

--with-mysql-sock=/var/run/mysqld/mysqld.sock \

--with-jpeg-dir=/usr \

--with-png-dir=/usr \

--with-openssl \

--with-fpm-user=www-data \

--with-fpm-group=www-data \

--with-libdir=/usr/lib/arm-linux-gnueabihf \

--enable-ftp \

--with-imap \

--with-imap-ssl \

--with-kerberos \

--with-gettext \

--with-xmlrpc \

--with-xsl \

--enable-opcache \

--enable-fpm \

--disable-debug \

--enable-shared \

--with-iconv \

--with-cdb \

--enable-dom \

--enable-fileinfo \

--enable-filter \

--with-pcre-dir \

--with-openssl-dir \

--with-png-dir \

--enable-gd-jis-conv \

--with-gmp \

--enable-json \

--enable-mbregex-backtrack \

--with-libmbfl \

--with-onig \

--enable-pdo \

--enable-session \

--with-readline \

--enable-shmop \

--enable-simplexml \

--enable-sysvmsg \

--enable-wddx \

--enable-mysqlnd-compression-support \

--with-pear

make 命令的 -j 参数用于指定编译时使用的线程数,根据开发板配置自行指定

这个过程会非常漫长

make -j 4

make install

0x05 配置 php-fpm

复制默认配置文件

cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf

cp /usr/local/php/etc/php-fpm.d/www.conf.default /usr/local/php/etc/php-fpm.d/www.conf

运行 php-fpm

/usr/local/php/sbin/php-fpm

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值