1.nginx 發送信號nginx
#發送reload信號 從新加載配置文件(同kill -9) [root@i-vvwtw5ne sbin]# ./nginx -s reload #發送stop信號 馬上中止服務 [root@i-vvwtw5ne sbin]# ./nginx -s stop #發送quit信號 優雅的中止服務 [root@i-vvwtw5ne sbin]# ./nginx -s quit #發送reopen信號 從新開始記錄日誌文件 [root@i-vvwtw5ne sbin]# ./nginx -s reopen
2. 獲取nginx的幫助測試
[root@i-vvwtw5ne sbin]# ./nginx -h nginx version: nginx/1.16.1 Usage: nginx [-?hvVtTq] [-s signal] [-c filename] [-p prefix] [-g directives] Options: -?,-h : this help -v : show version and exit -V : show version and configure options then exit -t : test configuration and exit -T : test configuration, dump it and exit -q : suppress non-error messages during configuration testing -s signal : send signal to a master process: stop, quit, reopen, reload -p prefix : set prefix path (default: /opt/nginx/) -c filename : set configuration file (default: conf/nginx.conf) -g directives : set global directives out of configuration file
3. nginx默認用$installPath/conf/nginx.conf的配置文件,也能夠使用指定的配置文件,以下ui
[root@i-vvwtw5ne sbin]# ./nginx -c /opt/nginx/conf/mynginx.conf
4. 測試配置文件是否有語法錯誤this
[root@i-vvwtw5ne sbin]# ./nginx -t
5. 打印nignx的版本信息命令行
[root@i-vvwtw5ne sbin]# ./nginx -v