如何查看Debian机器上安装了Apache的哪个版本?
有这样做的命令吗?
如何查看Debian机器上安装了Apache的哪个版本?
有这样做的命令吗?
当前回答
工作在debian11靶心
/usr/sbin/apache2 -v
其他回答
该命令取决于您的Linux版本如何命名Apache Server。
在Debian和Mac OS上:
apachectl -v
在Red Hat和Amazon的EC2 Linux上使用:
httpd -v
在其他版本的Linux上尝试:
apache2 -v
你可以使用两种不同的标志:
-v # gives you the version number
-V # gives you the compile settings including version number.
如果你想在完整目录下运行命令,比如user3786265,但不知道你的apache位于哪里,使用whereis命令:
whereis httpd
工作在debian11靶心
/usr/sbin/apache2 -v
试试apachectl -V:
$ apachectl -V
Server version: Apache/2.2.9 (Unix)
Server built: Sep 18 2008 21:54:05
Server's Module Magic Number: 20051115:15
Server loaded: APR 1.2.7, APR-Util 1.2.7
Compiled using: APR 1.2.7, APR-Util 1.2.7
... etc ...
如果不成功,请使用sudo命令运行该命令。
用sudo试试
apachectl -V
-bash: apachectl: command not found
sudo apachectl -V
Server version: Apache/2.4.6 (Debian)
Server built: Aug 12 2013 18:20:23
Server's Module Magic Number: 20120211:24
Server loaded: APR 1.4.8, APR-UTIL 1.5.3
Compiled using: APR 1.4.8, APR-UTIL 1.5.2
Architecture: 32-bit
Server MPM: prefork
threaded: no
forked: yes (variable process count)
Server compiled with....
bla bla....
你也可以直接使用包管理器:
dpkg -l | grep apache
这不仅仅关注于版本号,而是会进行更广泛的搜索,这将为您提供其他有用的信息,比如模块版本。