Nginx(發音為 Engine x)是一個免費、開源、高性能、可擴展、可靠、功能齊全且流行的 HTTP 和 反向代理伺服器,郵件代理伺服器,以及通用的 TCP/UDP 代理伺服器。
Nginx 以其簡單的配置和低資源消耗而聞名,由於其 高性能,被用於為網絡上的一些高流量網站提供動力,如 GitHub,SoundCloud,Dropbox,Netflix,WordPress 等等。
閱讀更多: 每個 Linux 用戶必須知道的 3 個有用技巧
在本指南中,我們將解釋一些最常用的 Nginx 服務管理命令,作為開發人員或系統管理員,您應該隨時掌握這些命令。我們將展示 Systemd 和 SysVinit 的命令。
以下是一系列流行的 Nginx 命令列表,必须以 root 或 sudo 用户 的身份执行,并且应该适用于任何现代 Linux 发行版,如 CentOS、RHEL、Debian、Ubuntu 和 Fedora。
安装 Nginx 服务器
要安装 Nginx web 服务器,请使用默认的发行版软件包管理器,如下所示。
$ sudo yum install epel-release && yum install nginx [On CentOS/RHEL] $ sudo dnf install nginx [On Fedora] $ sudo apt install nginx [On Debian/Ubuntu]
检查 Nginx 版本
要检查您的 Linux 系统上安装的 Nginx web 服务器版本,请运行以下命令。
$ nginx -v nginx version: nginx/1.12.2
上述命令只是显示版本号。如果您想查看版本和配置选项,请使用如下所示的 -V
标志。
$ nginx -V
nginx version: nginx/1.12.2 built by gcc 4.8.5 20150623 (Red Hat 4.8.5-16) (GCC) built with OpenSSL 1.0.2k-fips 26 Jan 2017 TLS SNI support enabled configure arguments: --prefix=/usr/share/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi --http-scgi-temp-path=/var/lib/nginx/tmp/scgi --pid-path=/run/nginx.pid --lock-path=/run/lock/subsys/nginx --user=nginx --group=nginx --with-file-aio --with-ipv6 --with-http_auth_request_module --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_addition_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_geoip_module=dynamic --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_degradation_module --with-http_slice_module --with-http_stub_status_module --with-http_perl_module=dynamic --with-mail=dynamic --with-mail_ssl_module --with-pcre --with-pcre-jit --with-stream=dynamic --with-stream_ssl_module --with-google_perftools_module --with-debug --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic' --with-ld-opt='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -Wl,-E'
检查 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: 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 服務,執行以下命令。請注意,如果配置語法不是 OK,此過程可能會失敗。
$ sudo systemctl start nginx #systemd OR $ sudo service nginx start #sysvinit
啟用 Nginx 服務
前面的命令只是暫時啟動服務,若要在開機時自動啟用,執行以下命令。
$ sudo systemctl enable nginx #systemd OR $ sudo service nginx enable #sysv init
重新啟動 Nginx 服務
要重新啟動 Nginx 服務,這將停止然後啟動服務。
$ sudo systemctl restart nginx #systemd OR $ sudo service nginx restart #sysv init
查看 Nginx 服務狀態
您可以如下檢查 Nginx 服務的狀態。此命令顯示有關服務的運行時狀態信息。
$ sudo systemctl status nginx #systemd OR $ sudo service nginx status #sysvinit
Created symlink from /etc/systemd/system/multi-user.target.wants/nginx.service to /usr/lib/systemd/system/nginx.service. [root@tecmint ~]# systemctl status nginx ● nginx.service - The nginx HTTP and reverse proxy server Loaded: loaded (/usr/lib/systemd/system/nginx.service; enabled; vendor preset: disabled) Active: active (running) since Tue 2019-03-05 05:27:15 EST; 2min 59s ago Main PID: 31515 (nginx) CGroup: /system.slice/nginx.service ├─31515 nginx: master process /usr/sbin/nginx └─31516 nginx: worker process Mar 05 05:27:15 tecmint.com systemd[1]: Starting The nginx HTTP and reverse proxy server... Mar 05 05:27:15 tecmint.com nginx[31509]: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok Mar 05 05:27:15 tecmint.com nginx[31509]: nginx: configuration file /etc/nginx/nginx.conf test is successful Mar 05 05:27:15 tecmint.com systemd[1]: Failed to read PID from file /run/nginx.pid: Invalid argument Mar 05 05:27:15 tecmint.com systemd[1]: Started The nginx HTTP and reverse proxy server.
重新加載 Nginx 服務
要告訴 Nginx 重新加載其配置,請使用以下命令。
$ sudo systemctl reload nginx #systemd OR $ sudo service nginx reload #sysvinit
停止 Nginx 服務
如果您想暫停 Nginx 服務出於某種原因,請使用以下命令。
$ sudo systemctl stop nginx #systemd OR $ sudo service nginx stop #sysvinit
顯示 Nginx 命令幫助
要獲得所有 Nginx 命令和選項的簡易參考指南,請使用以下命令。
$ systemctl -h 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 Web 服務器性能的最終指南
- Amplify – NGINX 監控變得輕鬆
- ngxtop – 在Linux中实时监控Nginx日志文件
- 如何安装带有虚拟主机和SSL证书的Nginx
- 如何在Linux中隐藏Nginx服务器版本
现在就是这些!在本指南中,我们已经解释了一些您应该了解的最常用的Nginx服务管理命令,包括启动、启用、重新启动和停止Nginx。如果您有任何补充或问题要提出,请使用下面的反馈表格。
Source:
https://www.tecmint.com/useful-nginx-command-examples/