Blogger Information
Blog 93
fans 0
comment 0
visits 124366
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
CentOS系统如何使用YUM命令方便快捷安装Nginx
想无
Original
385 people have browsed it

YUM或Yellowdog Updater Modified是管理rpm包的前端工具。 它用于通过命令行界面或使用图形模式来安装,删除,更新和收集有关rpm软件包的信息。 使用YUM的主要优点是,它解决了rpm包的所有依赖关系,并将它们与包一起安装。

我用的是小鸟云服务器CentOS6.5系统,是可以使用YUM命令安装的,有些linux发行版系统并不是用yum的,比如debian和ubuntu就不能用Yum安装软件,用的是apt-get。

1.默认 yum 仓库无法直接安装nginx,需要创建一个文件 /etc/yum.repos.d/nginx.repo,并将下面的内容复制进去:
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=0
enabled=1

2.编辑并保存/etc/yum.repos.d/nginx.repo文件后,在命令行下执行:
[root@localhost ~]# yum list | grep nginx
nginx.x86_64 1.8.0-1.el6.ngx nginx
nginx-debug.x86_64 1.8.0-1.el6.ngx nginx
nginx-debuginfo.x86_64 1.8.0-1.el6.ngx nginx
nginx-nr-agent.noarch 2.0.0-8.el6.ngx nginx
安装:yum -y install nginx
参考文档:https://www.niaoyun.com/docs/16417.html/?utm_source=phpc-1230

总的来说,就是先根据系统环境选择yum源,下载好yum源,先yum clean //清除缓存
yum makecache //生成缓存
yum list //查看yum软件包
yum install -y nginx 安装nginx.
service nginx start //启动服务
service nginx status //查看服务状态
然后curl -I 127.0.0.1 看看能不能看到网站头部,应该可以看到是Nginx服务器。
接着在浏览器访问 127.0.0.1测试是否能够看到nginx欢迎界面。

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post