Nginx安装

1.下载Nginx及相关组件

直接进入一个文件夹,然后复制粘贴这些命令,在文件夹下会生成四个文件。(ps:可能不能下载,直接复制链接到浏览器,下载完xftp传进去)

wget http://nginx.org/download/nginx-1.10.2.tar.gz
wget http://www.openssl.org/source/openssl-fips-2.0.10.tar.gz
wget https://zlib.net/zlib-1.2.12.tar.gz
wget https://netix.dl.sourceforge.net/project/pcre/pcre/8.40/pcre-8.40.tar.gz

在这里插入图片描述

安装C++编译环境

yum install gcc-c++

2.安装Nginx及相关组件

  1. openssl安装:tar表示解压,cd就是进入解压好的文件夹,然后就是执行安装命令./config。下面几个安装含义相同。注意每次安装完都要退回上一级目录:cd …/
tar zxvf openssl-fips-2.0.10.tar.gz
cd openssl-fips-2.0.10
./config && make && make install
  1. pcre安装
tar zxvf pcre-8.40.tar.gz
cd pcre-8.40
./configure && make && make install
  1. zlib安装
tar zxvf zlib-1.2.12.tar.gz
cd zlib-1.2.12
./configure && make && make install
  1. nginx安装
tar zxvf nginx-1.10.2.tar.gz
cd nginx-1.10.2
./configure && make && make install

3.启动nginx

whereis nginx

在这里插入图片描述

/usr/local/nginx/sbin/nginx

在这里插入图片描述

ps -aux | grep nginx

在这里插入图片描述

4.设置开机自启动

进入centos的启动目录,编写启动脚本

cd /usr/lib/systemd/system/
vi nginx.service
#nginx 启动脚本
[Unit]
Description=nginx
After=network.target
  
[Service]
Type=forking
ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s quit
PrivateTmp=true
  
[Install]
WantedBy=multi-user.target
#设置开机自启动
systemctl enable nginx

#查看服务状态
systemctl status nginx

基本操作

启动

/usr/local/nginx/sbin/nginx

Nginx安装_第1张图片
默认nginx的端口是80,所以ip:80即可Nginx安装_第2张图片

停止/重启

/usr/local/nginx/sbin/nginx -s stop(quit、reload)

验证配置文件

/usr/local/nginx/sbin/nginx -t

配置文件

vim /usr/local/nginx/conf/nginx.conf

你可能感兴趣的:(服务器运维,nginx,linux,运维)