Ubuntu 安装 Nginx

安装nginx

先登录到root 用户,然后使用apt-get 安装nginx。
sudo su root

    sudo apt-get update
    sudo apt-get install nginx

查看nginx 版本

nginx -V 可以查看当前安装成功的nginx 版本。

nginx -V

启动nginx

service nginx start

重启reload 可以使用
service nginx reload

nginx 文件位置

可以通过命令查看Nginx 文件,并进行配置更改

/usr/sbin/nginx:主程序
/etc/nginx:存放配置文件
/usr/share/nginx:存放静态文件
/var/log/nginx:存放日志

卸载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 

你可能感兴趣的:(Ubuntu 安装 Nginx)