Nginx的安装和使用(windows&Linux)

  • Windows下安装Nginx
  • Linux下安装Nginx
  • Nginx常用命令
  • Nginx使用


Windows下安装Nginx

官网下载 建议下载稳定版

解压,目录如下

nginx配置根目录 映射 nginx设置根目录_重启

**启动运行nginx.exe:**出现下面的欢迎页面

nginx配置根目录 映射 nginx设置根目录_Nginx_02

# 结束nginx:命令行执行
nginx.exe -s stop

Linux下安装Nginx

官网下载 建议下载稳定版

卸载

# 检查服务器是否安装了nginx
[root@minghui ~]# whereis nginx
nginx: /usr/bin/nginx
# 如果已经安装,需要先卸载
# 1、输入以下指令全局查找nginx相关的文件
find / -name nginx*
# 2、删除查找出来的所有nginx相关文件
rm -rf file 此处跟查找出来的nginx文件

# 3、成功卸载后查找nginx,没有就代表卸载成功
[root@minghui /]# whereis nginx
nginx:[root@minghui /]# nginx
-bash: /usr/bin/nginx: No such file or directory

安装

1、安装gcc

安装 nginx 需要先将官网下载的源码进行编译,编译依赖 gcc 环境,如果没有 gcc 环境,则需要安装:

yum install gcc-c++

2、PCRE pcre-devel 安装

PCRE(Perl Compatible Regular Expressions) 是一个Perl库,包括 perl 兼容的正则表达式库。nginx 的 http 模块使用 pcre 来解析正则表达式,所以需要在 linux 上安装 pcre 库,pcre-devel 是使用 pcre 开发的一个二次开发库。nginx也需要此库。命令:

yum install -y pcre pcre-devel

3、zlib 安装

zlib 库提供了很多种压缩和解压缩的方式, nginx 使用 zlib 对 http 包的内容进行 gzip ,所以需要在 Centos 上安装 zlib 库。

yum install -y zlib zlib-devel

4、OpenSSL 安装
OpenSSL 是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的密钥和证书封装管理功能及 SSL 协议,并提供丰富的应用程序供测试或其它目的使用。
nginx 不仅支持 http 协议,还支持 https(即在ssl协议上传输http),所以需要在 Centos 安装 OpenSSL 库。

yum install -y openssl openssl-devel

5、下载安装包

手动下载.tar.gz安装包,地址:https://nginx.org/en/download.html

6、解压

tar -zxvf nginx-1.18.0.tar.gzcd nginx-1.18.0

7、配置

使用默认配置,在nginx根目录下执行

./configure
make
make install
# 验证安装
[root@minghui nginx-1.18.0]# whereis nginx
nginx: /usr/local/nginx

Nginx常用命令

  1. cd /usr/local/nginx/sbin/
  2. ./nginx 启动
  3. ./nginx -s stop 停止
  4. ./nginx -s quit 安全退出
  5. ./nginx -s reload 重新加载配置文件
  6. ps aux|grep nginx 查看nginx进程

nginx配置根目录 映射 nginx设置根目录_nginx配置根目录 映射_03

注意:如果连接不上,检查阿里云安全组是否开放端口,或者服务器防火墙是否开放端口!
相关命令:

# 开启
service firewalld start

# 重启
service firewalld restart

# 关闭
service firewalld stop

# 查看防火墙规则
firewall-cmd --list-all

# 查询端口是否开放
firewall-cmd --query-port=8080/tcp

# 开放80端口
firewall-cmd --permanent --add-port=80/tcp

# 移除端口
firewall-cmd --permanent --remove-port=8080/tcp

#重启防火墙(修改配置后要重启防火墙)
firewall-cmd --reload

# 参数解释
1、firwall-cmd:是Linux提供的操作firewall的一个工具;
2、--permanent:表示设置为持久;
3、--add-port:标识添加的端口;

Nginx使用

# 负载均衡的配置
upstream cdscds{
	server 127.0.0.1:8080 weight=1;
    server 127.0.0.1:8081 weight=1;
}

location / {    
	proxy_pass http://cdscds;
}