1、源码编译方式(如果没有外网需要手动安装依赖包)
安装make:yum -y install autoconf automake make
安装g++: yum -y install gcc gcc-c++
#一般系统中已经装了了make和g++,无须再装
yum -y install pcre pcre-devel
yum -y install zlib zlib-devel
yum install -y openssl openssl-devel
#安装nginx依赖的库
wget http://nginx.org/download/nginx-1.18.0.tar.gz
tar -zxvf nginx-1.9.0.tar.gz
cd nginx-1.9.0
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
#配置
#–prefix指定安装目录
#–with-http_ssl_module安装https模块
#creating objs/Makefile 代表编译成功
make && make install
#make编译
#make install安装
启动nginx:
效果如下:
2、yum安装方式
yum install epel-release -y #yum扩展源
yum install nginx -y
目录比较散,不容易管理
启动nginx
效果如下:
3、Nginx目录结构
• Conf 配置文件
• Html 网页文件
• Logs 日志文件
• Sbin 二进制程序
4、Nginx常用命令
添加nginx命令为系统命令
vi /etc/profile
最后添加
export PATH=$PATH:/usr/local/nginx/sbin
使环境变量立即生效
source /etc/profile
./nginx -c nginx.conf的文件。如果不指定,默认为NGINX_HOME/conf/nginx.conf
./nginx -s stop 停止
./nginx -s quit退出
退出后重新启动:
./nginx -s reload 重新加载nginx.conf