linux 上 nginx 安装步骤

1、安装 pcre,gcc 依赖包(这里不做讲述)

2、解压nginx安装包

    tar  -zxvf  nginx-1.17.9.tar.gz

3、移动nginx 至  /usr/local/nginx

4、进入nginx 执行配置文件

       [root@localhost nginx-1.17.9]# useradd nginx

       [root@localhost nginx-1.17.9]#  /configure --prefix=/usr/local/nginx  --user=nginx --group=nginx    或者

   ./configure --prefix=/usr/local/webserver/nginx --with-http_stub_status_module   --with-pcre=/usr/local/src/pcre-8.35  备注:这步需要安装 zlib 依赖

5、[root@localhost nginx-1.17.9]# make && make install

6、建立软链接

    ln -s /usr/local/nginx/sbin/nginx /usr/sbin

7、启动

    [root@localhost nginx-1.17.9]# nginx

8、查看是否安装成功

    [root@localhost nginx-1.17.9]# nginx  -v

9、重启nginx

     [root@localhost nginx-1.17.9]# nginx  -s reload

10、查看进程号

    ps -ef | grep nginx

你可能感兴趣的:(linux 上 nginx 安装步骤)