栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 系统运维 > 运维 > Linux

Linux安装Nginx

Linux 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Linux安装Nginx

文章目录
  • 1 下载nginx
  • 2 安装nginx
  • 3 安装出现错误
  • 4 Nginx其他命令

1 下载nginx

下载地址:http://nginx.org/en/download.html
下载完成后上传到Linux服务器

2 安装nginx
  1. 解压nginx:tar zxvf nginx-1.20.1.tar.gz
  2. 进度解压后的目录:cd nginx-1.20.1/
  3. 安装nginx: ./configure && make && make install
  4. 启动nginx:/usr/local/nginx/sbin/nginx
  5. 查看ngxin进程:ps -ef | grep nginx
3 安装出现错误

./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre= option.

解决方法:
yum -y install openssl openssl-devel
yum -y install pcre-devel

4 Nginx其他命令
  1. 命令帮助:/usr/local/nginx/sbin/nginx -h
  2. 验证配置文件是否合法:/usr/local/nginx/sbin/nginx -t
  3. 停止/重新加载:/usr/local/nginx/sbin/nginx -s stop(quit、reload)
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/341224.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号