当前位置: 首页 > article >正文

Linux下安装Nginx

目录

Nginx简介

Nginx安装

Nginx指令

停止nginx服务

安全退出

重新加载配置文件

查看nginx进程


Nginx简介

Nginx 是一个高性能的HTTP和反向代理web服务器,其特点是占有内存少,并发能力强,其并发能力在同类型的网页服务器中表现较好。

Nginx安装

安装gcc

yum install gcc-c++

安装 PCRE pcre-devel

yum install -y pcre pcre-devel

安装zlib 

yum install -y zlib zlib-devel

安装OpenSSL

yum install -y openssl openssl-devel

手动进行下载

下载链接

 

下载完成后传输到Linux系统/root目录下并解压

[root@localhost /]# cd /root
[root@localhost ~]# dir
anaconda-ks.cfg  -e    mysql		    nohup.out		projects  store
-d		 logs  nginx-1.24.0.tar.gz  __par_compile_fail	root	  -v
[root@localhost ~]# tar -zxvf nginx-1.24.0.tar.gz

在nginx目录下执行

[root@localhost nginx-1.24.0]# ./configure
[root@localhost nginx-1.24.0]# make
[root@localhost nginx-1.24.0]# make install

 启动nginx

cd /usr/local/nginx/sbin/
[root@localhost sbin]# ./nginx

通过ip+端口进行访问 

访问成功

Nginx指令

停止nginx服务

./nginx -s stop  停止nginx服务
[root@localhost sbin]# ./nginx -s stop

安全退出

./nginx -s quit  安全退出
[root@localhost sbin]# ./nginx -s quit

重新加载配置文件

./nginx -s reload  重新加载配置文件
[root@localhost sbin]# ./nginx -s reload

查看nginx进程

ps aux|grep nginx  查看nginx进程
[root@localhost sbin]# ps aux|grep nginx 
root       70984  0.0  0.0  18664   388 ?        Ss   18:51   0:00 nginx: master process ./nginx
nobody     70985  0.0  0.2  39552  4576 ?        S    18:51   0:00 nginx: worker process
root       71731  0.0  0.0 221940  1184 pts/0    S+   18:54   0:00 grep --color=auto nginx

http://www.kler.cn/a/158732.html

相关文章:

  • 使用Python编写一个简单的网页爬虫,从网站抓取标题和内容。
  • 【学习笔记】大模型调优(llms_tuning)
  • 解决微信小程序自定义tabbar点击两次才能跳转
  • Streamlit:快速搭建数据科学应用的利器
  • Ubuntu 的 ROS 操作系统 turtlebot3 导航仿真
  • torch.stack 张量维度的变化
  • 前端开发新趋势:Web3、区块链与虚拟现实
  • 解决:ModuleNotFoundError: No module named ‘qt_material‘
  • C++进阶篇7---异常
  • Unity中动态合批
  • SpringBoot+vue显示图片
  • CPP-SCNUOJ-Problem P24. [算法课贪心] 跳跃游戏
  • 鱼香ROS一键安装命令(支持微信、docker、ros等)
  • SpringSecurity6 | 默认用户生成
  • 2023年甘肃省职业院校技能大赛(中职教师组)网络安全竞赛样题(四)
  • GNN Maximum Flow Problem (From Shusen Wang)
  • 7+WGCNA+机器学习+实验+泛癌分析,多要素干湿结合
  • TCP 半连接队列和全连接队列
  • 区分(GIOU、DIOU、CIOU)(正则化、归一化、标准化)
  • 【小白推荐】安装OpenCV4.8 系统 Ubuntu 22.04LST Linux.
  • 第17章 匿名函数
  • 【PTA题目】6-1 猴子吃桃-递归 分数 10
  • 6.5 Windows驱动开发:内核枚举PspCidTable句柄表
  • 优化汽车产业用户营运:精细化策略
  • 使用C语言创建高性能网络爬虫IP池
  • 语义分割网络FCN