文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

nginx+php-fpm的安装和配置

2023-09-12 16:10

关注

环境

        虚拟机:VMware 16.2.4

        OS:centos 7.6

        远程连接工具:Xshell 7

        nginx版本: nginx-1.14.2

        php版本:php-7.2.12

一、nginx安装准备 

将压缩包上传到指定目录并解压 

进入解压后生成的nginx目录

创建worker进程运行用户

useradd -M -s /sbin/nologin www

安装依赖 

yum -y install pcre-devel zlib-devel openssl-devel

二、配置安装 

编写配置脚本

1|vim mynginx.sh./configure --prefix=/usr/local/nginx \--user=www --group=www \--with-http_ssl_module \--with-http_stub_status_module \--with-http_realip_module 

保存退出

为脚本赋予执行权限并执行

1|chmod +x mynginx.sh2|./mynginx.sh

编译安装

make -j2 && make install

三、后续配置

nginx源码包默认没有服务启动脚本,可以去社区下载,然后上传到/etc/init.d/目录下并赋予执行权限

添加到开机启动项

1|chkconfig --add nginx2|chkconfig nginx on

 四、php安装

安装依赖

1|cd /opt/php-7.2.122|yum -y install libxml2-devel \libjpeg-devel libpng-devel freetype-devel \curl-devel openssl-devel

编写配置脚本

1|vim myphp.sh./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc \--enable-fpm --with-fpm-user=www --with-fpm-group=www \--with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-iconv-dir \--with-freetype-dir --with-jpeg-dir --with-png-dir \--with-zlib --with-libxml-dir --enable-xml --disable-rpath \--enable-bcmath --enable-shmop --enable-sysvsem \--enable-inline-optimization --with-curl --enable-mbregex \--enable-mbstring --enable-ftp --with-gd --with-openssl --with-mhash \--enable-pcntl --enable-sockets --with-xmlrpc --with-libzip \--enable-soap --without-pear --with-gettext --disable-fileinfo \--enable-maintainer-zts

为脚本赋予执行权限并执行

1|chmod +x myphp.sh2|./myphp.sh

编译安装

make -j2 && make install

五、php后续配置 

使用php-fpm管理php服务,需要两个配置文件 

php.iniphp默认配置文件
php-fpm.confphp-fpm配置文件

 拷贝自带的模板:

1|cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf2|cp /usr/local/php/etc/php-fpm.d/www.conf.default /usr/local/php/etc/php-fpm.d/www.conf3|cp /opt/php-7.2.12/php.ini-development /usr/local/php/etc/php.ini

 2.添加到service服务管理和开机启动项

1|cp /opt/php-7.2.12/sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm2|chmod +x /etc/init.d/php-fpm3|chkconfig --add php-fpm

 3.添加到环境变量

1|echo 'PATH=/usr/local/php/bin:$PATH' >> /etc/profile2|source /etc/profile

六、nginx+php-fpm配置 

启动php-fpm

service php-fpm start

编写测试文件

1|vim /usr/local/nginx/html/index.php

保存退出

修改nginx配置文件

1|vim /usr/local/nginx/conf/nginx.conf#找到location / 段,修改为如下内容root html;    location / {    #root   html;    index  index.html index.htm;}#找到location ~\.php$ 段,修改为如下内容location ~ \.php$ {    #告知nginx如果接收到.php结尾的请求,交由给php-fpm进行处理    root           html;    fastcgi_pass   127.0.0.1:9000;    fastcgi_index  index.php;    fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;    include        fastcgi_params;}

保存退出

启动nginx服务

service nginx start

浏览器访问测试 

七、nginx的使用 

平滑升级

旧版本nginx-1.14.2
新版本nginx-1.16.0

将新版本的源码包上传到指定目录

解压并进入解压后生成的目录 

配置 && 编译 && 安装

1|./configure  --prefix=/usr/local/nginx --user=www --group=www \--with-http_ssl_module --with-http_stub_status_module --with-http_realip_module2|make -j2 && make install

平滑升级的两种方式

第一种:

        1.查看nginx的进程号

ps aux | grep nginx

        2.平滑升级nginx

1|kill -USR2 6918 #平滑的升级nginx二进制文件  拉起一个新的主进程  旧主进程不停止2|kill -WINCH 6918 #优雅地关闭worker进程3|kill -QUIT 6918 #优雅地退出,执行完当前的请求后退出

第二种:

        1.使用nginx默认提供的平滑升级指令

make install && make upgrade

 查看软件包版本 

 升级成功

 

 

 

来源地址:https://blog.csdn.net/weixin_63935238/article/details/126685639

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯