linux6.5 yum命令,CentOS6.5使用yum命令方便快捷安装Nginx

当然,首先要求是可以联网的系统,因为yum安装需要互联网连接。

1.为了追加 nginx 的 yum 仓库,需要创建一个文件 /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.i386                               1.4.7-1.el6.ngx               @nginx

nginx-debug.i386                         1.4.7-1.el6.ngx               nginx

会发现就是最新的稳定版

于是直接执行

yum -y install nginx

安装即可

3.这种安装和从源代码编译Nginx的安装完全不一样,安装完执行下面的命令

[root@localhost ~]# find / -name *nginx*

/etc/nginx/nginx.conf

[root@localhost ~]# whereis nginx

nginx: /usr/sbin/nginx /etc/nginx /usr/share/nginx

你会发现主要文件安装到了/etc/nginx下

接下来是启动Nginx服务,可以执行

[root@localhost ~]# service nginx start

正在启动 nginx:                                           [确定]

启动成功。

接着

[root@localhost ~]# netstat -lntp | grep nginx

tcp        0      0 0.0.0.0:80                  0.0.0.0:*                   LISTEN      7910/nginx

[root@localhost ~]# ps -ef | grep nginx

root      7910     1  0 23:43 ?        00:00:00 nginx: master process /usr/sbin/nginx -c

/etc/nginx/nginx.conf

nginx     7912  7910  0 23:43 ?        00:00:00 nginx: worker process

root      7942  2459  0 23:52 pts/1    00:00:00 grep nginx

缺省是一个master,一个slave,可以在配置nginx.conf文件里调整

4.设置开机自动启动

在centos6.5下测试了一下,不用设置

chkconfig nginx on

可以自行开机自动启动

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值