linux CentOS 安装 nginx
Posted AIの海雅
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux CentOS 安装 nginx相关的知识,希望对你有一定的参考价值。
官方网址:http://nginx.org/en/download.html
一、安装基础组件
yum -y isntall firewalld yum -y install gcc gcc-c++ yum -y install pcre-devel yum -y install zlib-devel yum -y install openssl openssl-devel
二、安装nginx
第一种:下载安装:
wget http://nginx.org/download/nginx-1.15.9.tar.gz
第二种:YUM安装:
查看yum库中的 nginx安装包
yum -y list nginx*
安装yum库中的 nginx
安装源:yum install nginx-release-centos-6-0.el6.ngx.noarch.rpm -y(注意-y参数)
安装Nginx:yum install nginx
启动Nginx服务:service nginx start
停止Nginx服务:service nginx stop
查看Nginx运行状态:service nginx status
检查Nginx配置文件:nginx -t
服务运行中重新加载配置:nginx -s reload
添加Nginx服务自启动:chkconfig nginx on
以上是关于linux CentOS 安装 nginx的主要内容,如果未能解决你的问题,请参考以下文章