Find nginx version?

前端 未结 6 1336
生来不讨喜
生来不讨喜 2021-02-01 11:50

I have installed nginx on Debian 7 with the following steps

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install nginx
sudo service nginx start
<         


        
6条回答
  •  渐次进展
    2021-02-01 12:21

    Make sure that you have permissions to run the following commands.

    If you check the man page of nginx from a terminal

    man nginx

    you can find this:

    -V             Print the nginx version, compiler version, and configure script parameters.
    
    -v             Print the nginx version.
    

    Then type in terminal

    nginx -v
    nginx version: nginx/1.14.0
    
    nginx -V
    nginx version: nginx/1.14.0
    built with OpenSSL 1.1.0g  2 Nov 2017
    TLS SNI support enabled
    

    If nginx is not installed in your system man nginx command can not find man page, so make sure you have installed nginx.

    You can also find the version using this command:

    Use one of the command to find the path of nginx

    ps aux | grep nginx
    ps -ef | grep nginx
    
    root       883  0.0  0.3  44524  3388 ?        Ss   Dec07   0:00 nginx: master process /usr/sbin/nginx -g daemon on; master_process on
    

    Then run from terminal:

    /usr/sbin/nginx -v
    
    nginx version: nginx/1.14.0
    

提交回复
热议问题