nginx安装介绍

nginx的安装介绍。

一、环境调试确认

1.确认系统网络

1
ping www.baidu.com

检查能否ping通

2.确认yum可用

1
yum list|grep gcc

3.确认关闭iptables规则

1
2
3
Iptables -L    查看是否有iptables规则
Iptables -F 关闭iptables规则
Iptables -t nat -L 再次查看是否有iptables规则

4.确认停用selinux

1
2
Getenforce     查看selinux是否开启
Setenforce 0 关闭selinux(只是临时关闭

修改/etc/sysconfig/selinux文件可以永久地禁用它。

5.安装基础依赖

gcc和gcc-c++以及相应依赖

1
yum -y install gcc gcc-c++ autoconf prce prce-devel make automake

安装vim

1
2
yum -y install wget httpd-tools vim
cd /opt;mkdir app download logs work backup

二、下载安装

前往nginx官方下载页面:http://nginx.org/en/download.html

对应版本介绍

  • Mainline version-开发版
  • Stable version-稳定版
  • Legacy version-历史版本

点击页面下方的

Linux packages for stable and mainline versions. 进入对应不同Linux系统的安装介绍

本系统是centos7,所以根据提示:

create the file named /etc/yum.repos.d/nginx.repo with the following contents:

查看nginx yum源

1
yum install nginx

安装完成,查看安装好的nginx版本:

Comments