每个Linux用户必须知道的10个最常用的Nginx命令

Nginx(发音为Engine x)是一个免费的,开源的,高性能,可扩展,可靠,功能齐全且流行的HTTP和反向代理服务器,邮件代理服务器和通用TCP/UDP代理服务器。

Nginx以其简单的配置和低资源消耗而闻名,因为它具有高性能,它被用于为Web上的几个高流量站点供电,例如GitHub,SoundCloud,Dropbox,Netflix,WordPress等等。

在本指南中,我们将介绍一些最常用的Nginx服务管理命令,作为开发人员或系统管理员,您应该随意使用。 我们将显示Systemd和SysVinit的命令。

安装Nginx服务器

要安装Nginx Web服务器,请使用默认的分发包管理器,如下所示。

$ sudo yum install epel-release && yum install nginx  [On CentOS/RHEL]
$ sudo dnf install nginx                              [On Debian/Ubuntu]
$ sudo apt install nginx                              [On Fedora]

检查Nginx版本

要检查Linux系统上安装的Nginx Web服务器的版本,请运行以下命令。

$ nginx -v

nginx version: nginx/1.12.2

上面的命令只显示版本号。 如果要查看版本并配置选项,请使用-V标志,如图所示。

$ nginx -V

显示Nginx,编译器和配置参数

检查Nginx配置语法

在实际启动Nginx服务之前,您可以检查其配置语法是否正确。 如果您已对现有配置结构进行了更改或添加了新配置,则此功能尤其有用。

要测试Nginx配置,请运行以下命令。

$ sudo nginx -t

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

您可以测试Nginx配置,转储它并使用-T标志退出,如图所示。

$ sudo nginx -T

显示Nginx配置设置

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
# configuration file /etc/nginx/nginx.conf:
# For more information on configuration, see:
#  * Official English Documentation: http://nginx.org/en/docs/
#  * Official Russian Documentation: http://nginx.org/ru/docs/

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

# Load dynamic modules. See /usr/share/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;

events {
    worker_connections 1024;
}

http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay        on;
    keepalive_timeout  65;
    types_hash_max_size 2048;

    include            /etc/nginx/mime.types;
    default_type        application/octet-stream;

    # Load modular configuration files from the /etc/nginx/conf.d directory.
    # See http://nginx.org/en/docs/ngx_core_module.html#include
    # for more information.
    include /etc/nginx/conf.d/*.conf;

    server {
        listen      80 default_server;
        listen      [::]:80 default_server;
        server_name  _;
        root        /usr/share/nginx/html;

        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;

        location / {
        }

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }

....

启动Nginx服务

要启动Nginx服务,请运行以下命令。 请注意,如果配置语法不正确,此过程可能会失败。

$ sudo systemctl start nginx #systemd
或者
$ sudo service nginx start  #sysvinit

启用Nginx服务

上一个命令仅在此期间启动服务,要在启动时启用它自动启动,请运行以下命令。

$ sudo systemctl enable nginx #systemd
或者
$ sudo service nginx enable  #sysv init

重启Nginx服务

要重新启动Nginx服务,将停止然后启动该服务的操作。

$ sudo systemctl restart nginx #systemd
或者
$ sudo service nginx restart  #sysv init

查看Nginx服务状态

您可以按如下方式检查Nginx服务的状态。 此命令显示有关服务的运行时状态信息。

$ sudo systemctl status nginx #systemd
或者
$ sudo service nginx status  #sysvinit

显示Nginx状态信息

重新加载Nginx服务

要告诉Nginx重新加载其配置,请使用以下命令。

$ sudo systemctl reload nginx #systemd
或者
$ sudo service nginx reload  #sysvinit

停止Nginx服务

如果您想出于一次性原因而停止Nginx服务,请使用以下命令。

显示Nginx命令帮助

要获得所有Nginx命令和选项的简单参考指南,请使用以下命令。

$ systemctl -h nginx

Nginx帮助命令和选项

systemctl [OPTIONS...] {COMMAND} ...

Query or send control commands to the systemd manager.

  -h --help          Show this help
    --version        Show package version
    --system        Connect to system manager
  -H --host=[USER@]HOST
                      Operate on remote host
  -M --machine=CONTAINER
                      Operate on local container
  -t --type=TYPE      List units of a particular type
    --state=STATE    List units with particular LOAD or SUB or ACTIVE state
  -p --property=NAME  Show only properties by this name
  -a --all            Show all loaded units/properties, including dead/empty
                      ones. To list all units installed on the system, use
                      the 'list-unit-files' command instead.
  -l --full          Don't ellipsize unit names on output
  -r --recursive      Show unit list of host and local containers
    --reverse        Show reverse dependencies with 'list-dependencies'
    --job-mode=MODE  Specify how to deal with already queued jobs, when
                      queueing a new job
    --show-types    When showing sockets, explicitly show their type
  -i --ignore-inhibitors
...

就这样了! 在本指南中,我们已经解释了一些您应该知道的最常用的Nginx服务管理命令,包括启动,启用,重新启动和停止Nginx。 如果您有任何要求或要求提出的问题,请使用下面的反馈表。

猜你喜欢

转载自www.linuxidc.com/Linux/2019-05/158634.htm