redhat7通过yum安装nginx

宝剑锋从磨砺出,梅花香自苦寒来。这篇文章主要讲述redhat7通过yum安装nginx相关的知识,希望能为你提供帮助。
1、准备yum源
vi /etc/yum.repo.d/nginx.repo
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/mainline/rhel/7/$basearch/
gpgcheck=0
enable=1
准备好了源之后,更新源
$ yum clean all
$ yum makecache


2、安装nginx
$ yum install -y nginx
安装成功之后可以通过 $ nginx -v查看版本
# nginx -v
【redhat7通过yum安装nginx】nginx version: nginx/1.13.0


3、启动nginx并通过浏览器查看页面
systemctl start nginx




===编译安装命令===
yum -y install pcre-devel openssl openssl-devel
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module









    推荐阅读