linux下yum安装最新稳定版nginx详解程序员

本文章主要介绍了linux下yum安装最新稳定版nginx,具有不错的的参考价值,希望对您有所帮助,如解说有误或未考虑完全的地方,请您留言指出,谢谢!

摘抄nginx官网文档

URL:IT虾米网

To set up the yum repository for RHEL/CentOS, create the file named /etc/yum.repos.d/nginx.repo with the following contents:

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

Replace “OS” with “rhel” or “centos”, depending on the distribution used, and “OSRELEASE” with “6” or “7”, for 6.x or 7.x versions, respectively.

执行如下命令进行yum安装nginx

yum install nginx

查看nginx版本

# 查看nginx版本 
nginx -v 
 
# 查看编译参数 
nginx -V

 查看安装目录

 rpm -ql nginx

查看配置文件

# 用于日志切割 
/etc/logrotate.d/nginx
 
 
 

原创文章,作者:6024010,如若转载,请注明出处:https://blog.ytso.com/228339.html

(0)
上一篇 2022年1月11日
下一篇 2022年1月11日

相关推荐

发表回复

登录后才能评论