Linux安装Nginx

1. 在 /usr/local 建nginx文件夹,下载nginx压缩文件

nginx下载地址:http://nginx.org/download
找稳定版本

执行命令

cd /usr/local
mkdir nginx
wget http://nginx.org/download/nginx-1.24.0.tar.gz
tar -zxvf nginx-1.24.0.tar.gz

2. 安装编译工具、库文件

yum -y install make zlib zlib-devel gcc-c++ libtool  openssl openssl-devel pcre-devel

说明:

gcc、gcc-c++ 主要用来进行编译相关使用

openssl、openssl-devel 一般当配置https服务的时候就需要这个了

zlib、zlib-devel 主要用于文件的解压缩

pcre、pcre-devel Nginx的rewrite模块和HTTP核心模块会用到PCRE正则表达式语法

3. 进入安装包目录,编译安装

cd nginx-1.24.0
./configure --prefix=/usr/local/nginx
make && make install

说明:

./configure 编译
make && make install 安装

4. 进入sbin目录,启动nginx

cd /usr/local/nginx/sbin
./nginx

其他命令

./nginx -s stop 快速停止
./nginx -s quit 正常停止
./nginx -s reload 重启

posted @ 2023-11-14 11:15  烨熠  阅读(1025)  评论(0编辑  收藏  举报