【云服务器CentOS7使用】 安装Nginx并自动启动

来源:互联网 发布:阿里云装mysql数据库 编辑:程序博客网 时间:2024/04/30 06:09

直接执行

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:                                           [确定]

接着查看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
原创粉丝点击