linux 中 nginx怎么样安装
发布网友
发布时间:2022-04-20 17:50
我来回答
共1个回答
热心网友
时间:2022-06-17 18:49
①- 配置yum源
cd /etc/yum.repos.d/
vim nginx.repo
###添加下面内容到nginx.repo文件
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/OS/OSRELEASE/$basearch/
gpgcheck=0
enabled=1
②- yum -y install nginx
③- chkconfig nginx on
###设置centos redhat 6版本 及其以下版本 开机自启动
④- systemctl enable nginx
###设置centos redhat 7版本 开机自启动