我已经通过以下步骤在Debian 7上安装了nginx
sudo apt-get update sudo apt-get upgrade sudo apt-get install nginx sudo service nginx start
我已经确认通过从浏览器访问hostip来启动nginx.我如何找到nginx的版本?
nginx -v
因command not found
错误而失败
我验证了nginx存在于usr/sbin目录中,并且该目录被添加到$ PATH变量中
您的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
参数显示版本以及编译器版本和配置参数.
就我而言,我尝试添加sudo
sudo nginx -v
如果您不知道它在哪里,请先找到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