Centos 7.4 yum方式安装nginx

版本信息:

OS: CentOS 7.4

Nginx: 1.14.0

1.创建nginx.repo仓库文件

#vi /etc/yum.repos.d/nginx.repo

    [nginx]
    name=nginx repo
    baseurl=http://nginx.org/packages/centos/7/x86_64/
    gpgcheck=0
    enabled=1

  

2.重建本地yum库缓存

#yum clean all
#yum makecache local

  

3.安装nginx软件包

#yum install nginx
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
Resolving Dependencies
--> Running transaction check
---> Package nginx.x86_64 1:1.14.0-1.el7_4.ngx will be installed
--> Finished Dependency Resolution

Dependencies Resolved

=========================================================================================================================================================================================================================================
 Package                                             Arch                                                 Version                                                              Repository                                           Size
=========================================================================================================================================================================================================================================
Installing:
 nginx                                               x86_64                                               1:1.14.0-1.el7_4.ngx                                                 nginx                                               750 k

Transaction Summary
=========================================================================================================================================================================================================================================
Install  1 Package

Total download size: 750 k
Installed size: 2.6 M
Is this ok [y/d/N]: y
Downloading packages:
nginx-1.14.0-1.el7_4.ngx.x86_64.rpm                                                                                                                                                                               | 750 kB  00:00:26
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : 1:nginx-1.14.0-1.el7_4.ngx.x86_64                                                                                                                                                                                     1/1
----------------------------------------------------------------------

Thanks for using nginx!

Please find the official documentation for nginx here:

  

4.验证nginx安装成功

#rpm -qa | grep nginx
nginx-1.14.0-1.el7_4.ngx.x86_64

#nginx -V
nginx version: nginx/1.14.0
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-16) (GCC)
built with OpenSSL 1.0.2k-fips  26 Jan 2017
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-compat --with-file-aio --with-threads --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module --with-cc-opt=‘-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fPIC‘ --with-ld-opt=‘-Wl,-z,relro -Wl,-z,now -pie‘

  

原文地址:https://www.cnblogs.com/dinglin1/p/9047740.html

时间: 2024-07-30 06:49:44

Centos 7.4 yum方式安装nginx的相关文章

centos7 yum 方式安装nginx

centos7  yum 方式安装nginx centos7系统库中默认是没有nginx的rpm包的,所以我们自己需要先更新下rpm依赖库 (1)使用yum安装nginx需要包括Nginx的库,安装Nginx的库 #rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm (2)使用下面命令安装nginx #yum install nginx (3)启动N

CentOS 7 下 yum 方式安装 Docker 环境

教你如何在 CentOS 7 下 yum 方式安装 Docker 环境. 记录在CentOS 7下使用yum方式安装Docker环境的步骤. 1.移除旧版本: yum remove docker                   docker-client                   docker-client-latest                   docker-common                   docker-latest                  

CentOS 7以yum方式安装zabbix3.2及配置文件详解

一.zabbix简介与环境准备 简介详见 ---> zabbix简介 环境准备: CentOS 7(node7):zabbix-server,web,mysql,agent mariadb:5.5.50 zabbix组件:3.2.1 apache:2.4.6 二.安装与配置 1.安装数据库(mariadb),可直接yum安装 [[email protected] ~]# vim /etc/yum.repos.d/MariaDB.repo [mariadb]  name = MariaDB  ba

Centos 6.2_X86_64 yum方式安装LNMP

yum方式安装LNMP详情请见附件

CentOS7下yum方式安装nginx

最近把centos升级到7,发现用之前的一些安装nginx的方法安装后有依赖包冲突,估计是 linux版本和nginx版本不匹配导致. 上官网查看文档, 有针对centos7的安装方法,记录下: step1:  创建yum数据源文件   /etc/yum.repos.d/nginx.repo step2: 编辑nginx.repo文件内容如下并保存 [nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/7/$basear

Linux - CentOS 7 通过Yum源安装 Nginx

添加源 sudo rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm 安装Nginx sudo yum install -y nginx 直到出现 Complete! 启动 sudo systemctl start nginx.service 启动后在浏览器上访问,网页出现以下内容说明安装成功. Nginx常用命令 查看版本:nginx -v 查看n

阿里云CentOS 7.3 yum命令安装nginx

前提是已经设置好80端口对外开放. 安装nginx,首先我们需要使用root用户进行操作. 第一步:添加nginx存储库 使用命令:sudo yum install epel-release 在对提示回答yes后,nginx存储库将在服务器上完成安装 第二步:安装nginx 使用yum安装 使用命令:sudo yum install nginx 在对提示回答yes后,Nginx将在服务器上完成安装. 第三步:启动nginx 安装成功之后启动nginx 使用命令:sudo systemctl st

redhat 6用yum方式安装nginx

前提条件:如果发生了没有注册redhat账号造成没有权限使用yum的情况下,可以参考:http://www.cnblogs.com/boshen-hzb/p/6080431.html 1.cd /etc/yum.repos.d/ 在里面新建文件nginx.repo [nginx] name=nginx repo baseurl=http://nginx.org/packages/CentOS/$releasever/$basearch/ gpgcheck=0 enabled=1 注意,上面的ba

CentOS 7.2 yum方式安装MySQL 5.7

CentOS 7之后的版本yum的默认源中使用MariaDB替代原先MySQL,因此安装方式较为以往有一些改变: 下载mysql的源 wget http://dev.mysql.com/get/mysql57-community-release-el7-7.noarch.rpm 安装yum库 yum localinstall -y mysql57-community-release-el7-7.noarch.rpm 安装MySQL yum install -y mysql-community-s