Nginx安装 nginx无法直接通过yum安装,需要先进行配置,并且要保证其依赖库已安装完成。 检查依赖项(nginx 中gzip模块需要 zlib 库,rewrite模块需要 pcre 库,ssl 功能需要openssl库) 安装方法为:yum -y install pcre pcre-deve ...
分类:
系统相关 时间:
2020-06-15 10:09:31
阅读次数:
68
一、查看 nginx 安装目录 ps -ef | grep nginx 二、查看配置文件 nginx.conf 路径 nginx -t 这条命令也可以用于检查配置文件是否正确。 当然也可以使用 find 命令进行文件查找 # 从 / 根目录下查找文件名为 nginx.conf 的文件find / - ...
分类:
系统相关 时间:
2020-06-14 13:16:23
阅读次数:
215
编译安装: 下载:http://nginx.org/download/nginx-1.18.0.tar.gz 解压:tar -zxvf nginx-1.18.0.tar.gz configure: ./configure --prefix=/usr/local/soft/nginx-1.18.0 - ...
分类:
其他好文 时间:
2020-06-14 13:14:28
阅读次数:
63
1.下载nginx安装包,放进Linux系统中 nginx下载地址:https://nginx.org/download/ 2.安装依赖 yum -y install gcc pcre-devel zlib-devel openssl openssl-devel 3.解压nginx安装包 tar - ...
分类:
其他好文 时间:
2020-06-13 11:27:19
阅读次数:
67
nginx安装 //安装编译工具及库文件 yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel //安装 PCRE 让 Nginx 支持 Rewrite 功能 wget http://downloads.s ...
分类:
其他好文 时间:
2020-06-10 19:25:09
阅读次数:
68
1. 先安装homebrew 2. 安装Nginx,终端下执行: $ brew install nginx 安装过程中会自己安装依赖: 3. 启动nginx服务 $ nginx 成功后,使用浏览器打开http://localhost:8080 。 4. nginx文件目录 nginx安装文件目录 / ...
分类:
系统相关 时间:
2020-06-09 20:39:20
阅读次数:
86
1. 安装Nginx 2. 安装Mysql 3.安装PHP 4. 安装Composer --确认是否安装Composer:Composer -version --下载Composer:curl -sS https://getcomposer.org/installer | php --查看Compo ...
分类:
Web程序 时间:
2020-06-04 19:43:42
阅读次数:
247
博主最近在使用nginx的时候,应该电脑中的nginx安装了两个版本,导致配置的时候搞到怀疑人生,我是不是用了个假的nginx,特此做好使用记录,以便下次不会处理傻逼问题 一,首先是nginx的基本逻辑图 二.nginx相关命令 1、启动:start nginx或 ./nginx.exe2、停止:n ...
分类:
其他好文 时间:
2020-06-04 19:30:50
阅读次数:
74
1, 安装依赖包 yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel 2. 下载解压文件 wget http://nginx.org/download/nginx-1.9.9.tar.gz tar -xvzf ngi ...
分类:
其他好文 时间:
2020-05-29 12:19:19
阅读次数:
72