centos下yum安装nginx
Posted 时光列车!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos下yum安装nginx相关的知识,希望对你有一定的参考价值。
在/etc/yum.repos.d/目录下创建一个源配置文件nginx.repo
cd /etc/yum.repos.d/
vim nginx.repo
填写如下内容:
【nginx】
name=nginx repo
baseurl=http://nginx.org/packages/centos/6/$basearch/
gpgcheck=0
enabled=1
保存。
yum install nginx ---安装nginx
service nginx start -启动nginx
Starting nginx: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
解决:使用命令关闭占用80端口的程序
sudo fuser -k 80/tcp
以上是关于centos下yum安装nginx的主要内容,如果未能解决你的问题,请参考以下文章