UbuntuLinux

Ubuntu 16.04 安装 Nginx

2021-07-15  本文已影响0人  Rinaloving

安装 Nginx

    sudo apt-get update
    sudo apt-get install nginx
安装Nginx.png

查看 Nginx 版本

    nginx -v
查看Nginx版本.png

启动 Nginx

    /etc/init.d/nginx start  #启动
    /etc/init.d/nginx stop  #关闭
    /etc/init.d/nginx restart  #重启
    或者
    service nginx start

启动Nginx.png

卸载 Nginx

    sudo apt-get remove nginx nginx-common # 卸载删除除了配置文件以外的所有文件。

    sudo apt-get purge nginx nginx-common # 卸载所有东东,包括删除配置文件。

    sudo apt-get autoremove # 在上面命令结束后执行,主要是卸载删除Nginx的不再被使用的依赖包。

    sudo apt-get remove nginx-full nginx-common #卸载删除两个主要的包。  
    // sudo service nginx restart  #重启nginx
卸载Nginx.png

拓展

如果是在阿里云上部署,并且想在外面访问到 Nginx 那么还要进行以下操作

开通80端口(Nginx 默认的端口)

开通80端口.png

服务器也要设置

开放80端口
    sudo ufw allow 80               //开放80端口
查看端口规则
    sudo ufw status
重启防火墙
   sudo ufw reload           //重启防火墙,是配置生效
服务器端口开通.png

外部访问 Nginx

外部访问Nginx.png
上一篇 下一篇

猜你喜欢

热点阅读