php7如何源码编译安装,编译安装php72

发布时间:2022-11-16

本文目录一览:

  1. 如何在openSUSE42.1下编译安装PHP7
  2. 在网上下载的php网站源码,如何安装!求详细的教程!
  3. Centos7怎么做安装PHP7最新版
  4. centos7系统源码编译安装PHP7.3.5版本
  5. 阿里云默认centos7上怎么安装php

如何在openSUSE42.1下编译安装PHP7

里面说到是否会去使用PHP7,就个人而言,我是毫不犹豫地使用的,但是生产环境就不是我说了算,所以只能自己在自己的开发环境里更新PHP的版本。那么,你呢? 笔者使用的是Linux的openSUSE42.1发行版,Yast里面还没有PHP7的安装包,于是乎只能自己手动编译安装了。作为一个PHP开发者,我是非常希望能够学会编译安装PHP7的,之前试过几次,但是每次安装都要上网找各种资料,于是乎,这次安装成功后就想把自己的安装过程以及遇到的问题记录下来,方便以后查阅和分享给需要的人。

下载源码并解压

进入正题,要编译安装PHP7,首先当然要下载PHP7的源码。你可以到 github 上clone,也可以到 PHP官网 下载。下载后解压到 /usr/local/src 目录,并将目录重命名为php7。进入目录。

配置编译参数

生成配置文件:

./buildconf

配置:

./configure \
--prefix=/usr/local/php7 \
--exec-prefix=/usr/local/php7 \
--bindir=/usr/local/php7/bin \
--sbindir=/usr/local/php7/sbin \
--includedir=/usr/local/php7/include \
--libdir=/usr/local/php7/lib/php \
--mandir=/usr/local/php7/php/man \
--with-config-file-path=/usr/local/php7/etc \
--with-mysql-sock=/var/run/mysql/mysql.sock \
--with-mcrypt=/usr/include \
--with-mhash \
--with-openssl \
--with-mysqli=shared,mysqlnd \
--with-pdo-mysql=shared,mysqlnd \
--with-gd \
--with-iconv \
--with-zlib \
--enable-zip \
--enable-inline-optimization \
--disable-debug \
--disable-rpath \
--enable-shared \
--enable-xml \
--enable-bcmath \
--enable-shmop \
--enable-sysvsem \
--enable-mbregex \
--enable-mbstring \
--enable-ftp \
--enable-gd-native-ttf \
--enable-pcntl \
--enable-sockets \
--with-xmlrpc \
--enable-soap \
--without-pear \
--with-gettext \
--enable-session \
--with-curl \
--with-jpeg-dir \
--with-freetype-dir \
--enable-opcache \
--enable-fpm \
--disable-cgi \
--with-fpm-user=nginx \
--with-fpm-group=nginx \
--without-gdbm \
--disable-fileinfo

参数说明

  • prefix:PHP7安装的根目录
  • with-config-file-path:PHP7的配置文件目录 执行完上面的配置命令后的结果如下图所示: 执行上面命令的过程中会遇到一些依赖缺少的提示,下面列出我遇到的依赖问题:

错误1:

configure: error: xml2-config not found. Please check your libxml2 installation.

解决:

zypper install libxml2-devel

错误2:

configure: WARNING: unrecognized options: --with-mysql

解决: 取消这个选项,这个选项是不存在的。

错误3:

configure: error: jpeglib.h not found.

解决:

zypper install libjpeg-devel

错误4:

configure: error: mcrypt.h not found. Please reinstall libmcrypt.

解决:

zypper install libmcrypt-devel

错误5:

checking for recode support... yes
configure: error: Can not find recode.h anywhere under /usr /usr/local /usr /opt.

解决:

zypper install librecode-devel

总的来说,在配置的时候遇到没有的就打开Yast搜一下,如果有的话就安装,然后重新编译看还需要那些,如果在Yast找不到,那就上网找一下Google。

编译和安装PHP7

make
make install

其中,make之后可以选择 make test。只是一个可选步骤,不执行不知道有什么问题,不过笔者暂时还没遇到。

查看安装成功后的PHP7目录

编译安装成功后,查看PHP7的安装目录:

ls /usr/local/php7

设置PHP7的配置文件

cp /usr/local/src/php7/php.ini-production /usr/local/php7/etc/php.ini
cp /usr/local/src/sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
cp /usr/local/php7/etc/php-fpm.conf.default /usr/local/php7/etc/php-fpm.conf
cp /usr/local/php7/etc/php-fpm.d/ /usr/local/php7/etc/php-fpm.d/

设置环境变量

/etc/profile 文件的最后一行加上:

export PATH=/usr/local/php7/bin:/usr/local/php7/sbin:$PATH

然后执行:

source /etc/profile

设置PHP日志目录和php-fpm进程文件(php-fpm.sock)目录

mkdir -p /var/log/php-fpm/
mkdir -p /var/run/php-fpm
cd /var/run/
chown -R nginx:nginx php-fpm

将PHP设置为开机启动

chmod +x /etc/init.d/php-fpm
chkconfig php-fpm on

可以用 chkconfig 命令查看开机启动服务列表。

启动PHP服务

service php-fpm start

通过 ps aux | grep 'php' 查看PHP是否启动成功。 至此,PHP7就安装成功了,你也开始使用PHP7吧!

在网上下载的php网站源码,如何安装!求详细的教程!

一个好的源码和用心的开发者是不会让你提出使用问题的,一般都会有详细的说明文档进行介绍。

高质量带说明文档的源码获取方法:(先下载,看源码需求,再搭建环境很重要)

  1. 打开百度,搜索“PopMars-专注共享资源 – 免费教程”
  2. 打开其中名字为 “PopMars-专注共享资源 – 免费教程|Php源码免费下载|IOS App应用...” 的网站
  3. 里面可以找到大量的php源码

准备:

查看源码里面的说明文件,源码运行的基本情况需求。在本机安装相应的环境即可运行。例如PHP7.0/Mysql 5.5等等。关于本机的环境你可以使用类似xampp的一键部署包。

Centos7怎么做安装PHP7最新版

直接下载PHP7.0.2的安装包解压,编译,安装:

下载php7,并解压

$ cd /usr/src/
$ wget
#解压
$ tar -xzxvf php-7.0.2.tar.gz
$ cd php-7.0.2

解压完后先不要编译,请检查是否安装了gcc,没有的话执行:

yum install gcc

检查是否安装了libxml2,没有的话执行:

yum install libxml2

检查是否安装了libxml2-devel,没有的话执行:

yum install libxml2-devel

注:因为改为用nginx了,所以编译参数中的 --with-apxs2=/usr/bin/apxs 去掉了,如果要配置apache用,安装PHP前,请先安装apache。

centos7系统源码编译安装PHP7.3.5版本

新增系统用户组和用户:

下载 PHP7.3.5:

[root@localhost ~]# mkdir devdir
[root@localhost ~]# cd devdir/
[root@localhost devdir]# wget
-bash: wget: 未找到命令
[root@localhost devdir]# rpm -qa|grep wget
[root@localhost devdir]# yum -y install wget
[root@localhost devdir]# rpm -qa|grep wget
wget-1.14-18.el7.x86_64

下载PHP7 解压 编译

wget -c

编译参数解释

  • --with-fpm-user=webu --with-fpm-group=webg 添加PHP运行用户和用户组

配置信息出错:

下载gcc软件编译器:

yum install -y gcc
configure: error: libxml2 not found. Please check your libxml2 installation.

下载 libzip-1.5.2.tar.gz 解决libzip 和cmake版本问题 重新配置PHP7编译环境参数 libzip-1.5.2 无法安装,已经取消了。 提示off_t类型没有定义 undefind,解决方法: 编译安装 测试PHP是否安装成功 转载自:

阿里云默认centos7上怎么安装php

首先更新系统软件:

$ yum update

安装nginx

  1. 安装nginx源:
$ yum localinstall
  1. 安装nginx:
$ yum install nginx
  1. 启动nginx:
$ service nginx start

Redirecting to /bin/systemctl start nginx.service 4. 访问 http://你的ip/ 如果成功安装会出来nginx默认的欢迎界面

安装MySQL5.7.*

  1. 安装mysql源:
$ yum localinstall
  1. 安装mysql:
$ yum install mysql-community-server
  1. 确认一下mysql的版本,有时可能会提示mysql5.6
  2. 安装mysql的开发包,以后会有用:
$ yum install mysql-community-devel
  1. 启动mysql:
$ service mysqld start

Redirecting to /bin/systemctl start mysqld.service 6. 查看mysql启动状态:

$ service mysqld status

出现pid证明启动成功 7. 获取mysql默认生成的密码:

$ grep 'temporary password' /var/log/mysqld.log
2015-12-05T05:41:09.104758Z 1 [Note] A temporary password is generated for root@localhost: %G1Rgns!dD!v

加粗的就是生成的密码 8. 更换密码:

$ mysql -uroot -p
Enter password:输入上面的密码

成功输入后进入一下步,这里你估计会输入好几次才进去 9. 更换密码:

ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass4!';

这个密码一定要足够复杂,不然会不让你改,提示密码不合法 10. 退出mysql:

quit;
  1. 用新密码再登录,试一下新密码:
$ mysql -uroot -p
Enter password:输入你的新密码
  1. 确认密码正确后,退出mysql:
quit;

编译安装php7.0.0

  1. 下载php7源码包:
$ cd /root
wget -O php7.tar.gz
  1. 解压源码包:
$ tar -xvf php7.tar.gz
$ cd php-7.0.1
  1. 安装php依赖包:
$ 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
  1. 编译配置,这一步我们会遇到很多configure error,我们一一解决,基本都是相关软件开发包没有安装导致
$ ./configure \
--prefix=/usr/local/php \
--with-config-file-path=/etc \
--enable-fpm \
--with-fpm-user=nginx \
--with-fpm-group=nginx \
--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

configure error:

configure: error: xml2-config not found. Please check your libxml2 installation.

解决:

$ yum install libxml2 libxml2-devel
configure: error: Cannot find OpenSSL's evp.h

解决:

$ yum install openssl openssl-devel
configure: error: Please reinstall the BZip2 distribution

解决:

$ yum install bzip2 bzip2-devel
configure: error: Please reinstall the libcurl distribution - easy.h should be in curl-dir/include/curl/

解决:

$ yum install libcurl libcurl-devel
If configure fails try --with-webp-dir=DIR configure: error: jpeglib.h not found.

解决:

$ yum install libjpeg libjpeg-devel
If configure fails try --with-webp-dir=DIR
checking for jpeg_read_header in -ljpeg... yes
configure: error: png.h not found.

解决:

$ yum install libpng libpng-devel
If configure fails try --with-webp-dir=DIR
checking for jpeg_read_header in -ljpeg... yes
checking for png_write_image in -lpng... yes
If configure fails try --with-xpm-dir=DIR
configure: error: freetype-config not found.

解决:

$ yum install freetype freetype-devel
configure: error: Unable to locate gmp.h

解决:

$ yum install gmp gmp-devel
configure: error: mcrypt.h not found. Please reinstall libmcrypt.

解决:

$ yum install libmcrypt libmcrypt-devel
configure: error: Please reinstall readline - I cannot find readline.h

解决:

$ yum install readline readline-devel
configure: error: xslt-config not found. Please reinstall the libxslt = 1.1.0 distribution

解决:

$ yum install libxslt libxslt-devel

6. 编译与安装

$ make
make install

这里要make好久,要耐心一下

7. 添加 PHP 命令到环境变量

$ vim /etc/profile

在末尾加入:

PATH=$PATH:/usr/local/php/bin
export PATH

要使改动立即生效执行:

$ source /etc/profile

查看环境变量:

$ echo $PATH

查看php版本:

$ php -v

8. 配置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

9. 启动php-fpm

$ /etc/init.d/php-fpm start

配置nginx虚拟机,绑定域名

$ vim /etc/nginx/conf.d/php7.thinkcmf.com.conf

这里可以把 php7.thinkcmf.com.conf 改成自己的域名,把下面的内容复制到 php7.thinkcmf.com.conf 里:

server {
    listen 80;
    server_name php7.thinkcmf.com;
    root /var/www/html/php7.thinkcmf.com; # 该项要修改为你准备存放相关网页的路径
    location / {
        index index.php index.html index.htm;
        # 如果请求既不是一个文件,也不是一个目录,则执行一下重写规则
        if (!-e $request_filename) {
            # 地址作为将参数rewrite到index.php上。
            rewrite ^/(.*)$ /index.php/$1;
            # 若是子目录则使用下面这句,将subdir改成目录名称即可。
            # rewrite ^/subdir/(.*)$ /subdir/index.php/$1;
        }
    }
    # proxy the php scripts to php-fpm
    location ~ \.php$ {
        include fastcgi_params;
        ## pathinfo支持start
        # 定义变量 $path_info ,用于存放pathinfo信息
        set $path_info "";
        # 定义变量 $real_script_name,用于存放真实地址
        set $real_script_name $fastcgi_script_name;
        # 如果地址与引号内的正则表达式匹配
        if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {
            # 将文件地址赋值给变量 $real_script_name
            set $real_script_name $1;
            # 将文件地址后的参数赋值给变量 $path_info
            set $path_info $2;
        }
        # 配置fastcgi的一些参数
        fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
        fastcgi_param SCRIPT_NAME $real_script_name;
        fastcgi_param PATH_INFO $path_info;
        ### pathinfo支持end
        fastcgi_intercept_errors on;
        fastcgi_pass 127.0.0.1:9000;
    }
}
  1. 重启nginx:
$ service nginx reload
$ vim /var/www/html/php7.thinkcmf.com/index.php

把下面的代码复制到这个文件里:

<?php
phpinfo();
  1. 查看访问