则进行下一步 Thank you for using PHP 第六步: 进行编译安装 make make install
如果想一步到位,则使用下面的流程进行安置:
第一步: 安置cmake
yum install epel-release -y yum install cmake3 -y cp /usr/bin/cmake3 /usr/bin/cmake执行命令cmake -version 检察是否安置告成:
#输出 cmake version 3.16.1 CMake suite maintained and supported by Kitware (kitware.com/cmake).第二步:安置libzip1.5.2
#安置bzip2-devel依赖包 yum install bzip2 bzip2-devel -y #安置libzip cd ~ wget https://libzip.org/download/libzip-1.5.2.tar.gz tar xf libzip-1.5.2.tar.gz cd libzip-1.5.2 mkdir build cd build cmake .. make #make test make install第三步:安置php依赖
yum install gcc gcc-c++ libxml2 libxml2-devel openssl openssl-devel libcurl libcurl-devel freetype freetype-devel libjpeg libjpeg-devel libpng libpng-devel libxslt libxslt-devel systemd-devel libicu-devel libedit-devel第四步:创建www用户
useradd -M -s /sbin/nologin www 改削库加载路径vim /etc/ld.so.conf
#添加如下几行 /usr/local/lib64 /usr/local/lib /usr/lib /usr/lib64使之生效:
ldconfig -v或者:
echo /usr/local/lib64 >>/etc/ld.so.conf echo /usr/local/lib >>/etc/ld.so.conf echo /usr/lib >>/etc/ld.so.conf echo /usr/lib64 >>/etc/ld.so.conf ldconfig -v最终,再次进行预配置
第五步:下载php源码并预配置
#安置wget工具 yum install wget -y #下载php源码 wget https://www.php.net/distributions/php-7.3.12.tar.gz #解压php tar包 tar xf php-7.3.12.tar.gz #进入php解压后的目录 cd php-7.3.12 #预配置 ./configure --prefix=http://www.mamicode.com/usr/local/php --with-config-file-path=http://www.mamicode.com/usr/local/php/etc --with-config-file-scan-dir=http://www.mamicode.com/usr/local/php/etc/conf.d --disable-cgi --enable-fpm --with-fpm-user=www --with-fpm-group=www --enable-ftp --with-curl --with-gd --with-gettext --with-iconv-dir --with-kerberos --with-libedit --with-openssl --with-pcre-regex --with-pdo-mysql --with-xsl --with-zlib --with-mhash --with-mysqli --with-png-dir=http://www.mamicode.com/usr/lib --with-jpeg-dir=http://www.mamicode.com/usr/lib --with-freetype-dir=http://www.mamicode.com/usr/lib --enable-mysqlnd --enable-bcmath --enable-libxml --enable-inline-optimization --enable-gd-jis-conv --enable-mbregex --enable-mbstring --enable-opcache --enable-pcntl --enable-shmop --enable-soap --enable-sockets --enable-sysvsem --enable-xml --enable-zip --enable-calendar --enable-intl --enable-exif检察最后输出是否呈现error:
如果没有error呈现,并且呈现如下字眼,则进行下一步
Thank you for using PHP第六步: 进行编译安置
make && make install第七步:创建启动脚本
cp php.ini-development /usr/local/php/etc/php.ini cd /usr/local/php/etc/ cp php-fpm.conf.default php-fpm.conf默认官方供给了一个systemd打点脚本
路径为:/root/php-7.3.12/sapi/fpm下php-fpm.service
#复制一份配置文件 cp php-fpm.conf.default php-fpm.conf #拷贝启动脚本到指定目录 cp /root/php-7.3.13/sapi/fpm/php-fpm.service /usr/lib/systemd/system/ systemctl daemon-reload systemctl start php-fpm systemctl enable php-fpm systemctl status php-fpm这个时候还没完,启动 会提示你找不到包罗的配置文件:
cd /usr/local/php/etc/php-fpm.d/ cp www.conf systemctl start php-fpm systemctl status php-fpm这个时候不出不测就是正常状态:
检察进程是否存在
ps -ef|grep php-fpm检察端口是否启动:
ss -lntup|grep 9000Linux下安置php环境
标签:
原文地点:https://www.cnblogs.com/python99/p/12242628.html
,温馨提示: 本文由Jm博客推荐,转载请保留链接: https://www.jmwww.net/file/web/30877.html
