当前位置:  开发笔记 > 后端 > 正文

找到nginx版本?

如何解决《找到nginx版本?》经验,为你挑选了3个好方法。

我已经通过以下步骤在Debian 7上安装了nginx

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

我已经确认通过从浏览器访问hostip来启动nginx.我如何找到nginx的版本?

nginx -vcommand not found错误而失败

我验证了nginx存在于usr/sbin目录中,并且该目录被添加到$ PATH变量中



1> hassan ketab..:

您的nginx似乎未正确安装.注意安装命令的输出:

sudo apt-get install nginx

要检查nginx版本,可以使用以下命令:

$ nginx -v
nginx version: nginx/0.8.54

$ nginx -V
nginx version: nginx/0.8.54
TLS SNI support enabled
configure arguments: --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-log-path=/var/log/nginx/access.log --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --lock-path=/var/lock/nginx.lock --pid-path=/var/run/nginx.pid --with-debug --with-http_addition_module --with-http_dav_module --with-http_geoip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_realip_module --with-http_stub_status_module --with-http_ssl_module --with-http_sub_module --with-http_xslt_module --with-ipv6 --with-sha1=/usr/include/openssl --with-md5=/usr/include/openssl --with-mail --with-mail_ssl_module --add-module=/build/buildd/nginx-0.8.54/debian/modules/nginx-upstream-fair

有关更多信息,请访问:http: //nginxlibrary.com/check-nginx-version/

您可以使用-v参数仅显示Nginx版本,或使用-V参数显示版本以及编译器版本和配置参数.



2> Frank Nguyen..:

就我而言,我尝试添加sudo

sudo nginx -v

在此输入图像描述


如果您想让图像保持可读性,则没有必要涂黑图像。

3> 小智..:

如果您不知道它在哪里,请先找到nginx.

ps -ef | grep nginx

然后你会看到这样的事情:

root      4801     1  0 May23 ?        00:00:00 nginx: master process /opt/nginx/sbin/nginx -c /opt/nginx/conf/nginx.conf
root     12427 11747  0 03:53 pts/1    00:00:00 grep --color=auto nginx
nginx    24012  4801  0 02:30 ?        00:00:00 nginx: worker process                              
nginx    24013  4801  0 02:30 ?        00:00:00 nginx: worker process

所以现在你已经知道nginx在哪里了.您可以使用-v或-V.就像是:

/opt/nginx/sbin/nginx -v

推荐阅读
帆侮听我悄悄说星星
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有