继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

Centos 7.3环境PHP7.0安装

慕粉0415482673
关注TA
已关注
手记 297
粉丝 64
获赞 367

一、安装相关的依赖:

# yum -y install libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel MySQL pcre-devel

# yum -y install curl-devel

# yum -y install libxslt-devel

#yum install openssl openssl-devel

下载

#wget http://at1.php.net/distributions/php-7.0.2.tar.gz

二,解压安装

# tar -zxvf php-7.0.2.tar.gz

# cd php-7.0.2

# ./configure --prefix=/usr/local/php  --with-curl  --with-freetype-dir  --with-gd  --with-gettext  --with-iconv-dir  --with-kerberos  --with-libdir=lib64  --with-libxml-dir  --with-mysqli  --with-openssl  --with-pcre-regex  --with-pdo-mysql  --with-pdo-sqlite  --with-pear  --with-png-dir  --with-xmlrpc  --with-xsl  --with-zlib  --enable-fpm  --enable-bcmath  --enable-libxml  --enable-inline-optimization  --enable-gd-native-ttf  --enable-mbregex  --enable-mbstring  --enable-opcache  --enable-pcntl  --enable-shmop  --enable-soap  --enable-sockets  --enable-sysvsem  --enable-xml  --enable-zip

# make &&  make install

三,配置文件

# cp php.ini-development /usr/local/php/lib/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/www.conf.default /usr/local/php/etc/php-fpm.d/www.conf

# cp -R ./sapi/fpm/php-fpm /etc/init.d/php-fpm

需要注意的是php7中www.conf这个配置文件配置phpfpm的端口号等信息,如果你修改默认的9000端口号需在这里改,再改nginx的配置

启动
#  /etc/init.d/php-fpm

四,安装Nginx

#yun install nginx

查看Nginx安装路径

#rpm -ql nginx

五,查看PHP安装版本

进入Nginx存放页面目录

#cd /usr/share/nginx/html

#vim index.php

       <?php phpinfo(); ?>

六,配置Nginx

#vim /etc/nginx/nginx.conf

在配置文件的server中加入以下配置

        location ~ \.php$ {
          root /usr/share/nginx/html; #指定php的根目录
          fastcgi_pass 127.0.0.1:9000;#php-fpm的默认端口是9000
          fastcgi_index index.php;
          fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
          include fastcgi_params;
        }
重新加载Nginx

#/usr/sbin/nginx  -s reload

通过浏览器就可以查看PHP版本


PHP支持开机启动

CentOS 7的服务systemctl脚本存放在:/usr/lib/systemd/,有系统(system)和用户(user)之分,像需要开机不登陆就能运行的程序,最好还是存在系统服务里面,即:/usr/lib/systemd/system目录下,每一个服务以.service结尾,一般会分为3部分:[Unit][Service][Install]

我们可以使用systemctl -a来查看所有服务,如果列表里面没有PHP,又想借助于systemctl来进行统一管理的话,就到上述所说的/usr/lib/systemd/system目录下面创建以下文件吧

PHP之php-fpm.service文件

vim /usr/lib/systemd/system/php-fpm.service



  1. [Unit]

  2. Description=php

  3. After=network.target

  4. [Service]

  5. Type=forking

  6. ExecStart=/usr/local/php/sbin/php-fpm

  7. ExecStop=/bin/pkill -9 php-fpm

  8. PrivateTmp=true

  9. [Install]

  10. WantedBy=multi-user.target

#  systemctl restart php-fpm.service
#  systemctl enable php-fpm.service

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP