在Debian机器上安装的Apache版本

时间:2008-11-14 09:22:29

标签: apache debian version

如何查看Debian计算机上安装的Apache版本?

是否有执行此操作的命令?

17 个答案:

答案 0 :(得分:402)

尝试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运行命令。

答案 1 :(得分:141)

这适用于我的Debian:

$ /usr/sbin/apache2 -v

答案 2 :(得分:31)

对于较新的Debian或Ubuntu发行版,您应该使用 apache2ctl -v或 apache2 -v

apache:/etc/apache2# apache2ctl -v
Server version: Apache/2.2.16 (Debian)
Server built:   May 12 2011 11:58:18

或者您可以使用 apache2 -V 获取更多信息。

apache2 -V
Server version: Apache/2.2.16 (Debian)
Server built:   May 12 2011 11:58:18
Server's Module Magic Number: x
Server loaded:  APR 1.4.2, APR-Util 1.3.9
Compiled using: APR 1.2.12, APR-Util 1.3.9
Architecture:   64-bit
Server MPM:     Worker
  threaded:     yes (fixed thread count)
    forked:     yes (variable process count)
Server compiled with....

答案 3 :(得分:25)

我正在使用Red Hat Linux并且以下命令有效:

httpd -V

答案 4 :(得分:24)

该命令取决于您的Linux版本如何命名Apache服务器。

在Debian和Mac OS上:

apachectl -v

在Red Hat和亚马逊的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

答案 5 :(得分:15)

尝试使用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....

答案 6 :(得分:11)

您也可以直接使用包管理器:

dpkg -l | grep apache

这不仅仅关注版本号,但它会进行更广泛的搜索,这将为您提供其他有用的信息,例如模块版本。

答案 7 :(得分:10)

我认为您必须确定您拥有二进制或源代码的安装类型。 要检查安装了哪些二进制包:使用root权限执行以下命令:

dpkg -l |grep apache2

结果应该是这样的:

dpkg -l |grep apache2
ii  apache2                               2.4.10-10+deb8u8                      amd64        Apache HTTP Server
ii  apache2-bin                           2.4.10-10+deb8u8                      amd64        Apache HTTP Server (modules and other binary files)
ii  apache2-data                          2.4.10-10+deb8u8                      all          Apache HTTP Server (common files)
ii  apache2-doc                           2.4.10-10+deb8u8                      all          Apache HTTP Server (on-site documentation)

要查找版本,您可以运行:

apache2ctl -V |grep -i "Server version"

结果应该是这样的: 服务器版本:Apache / 2.4.10(Debian)

答案 8 :(得分:6)

对我而言,这适用于Debian 6(挤压):

  

Linux www809 2.6.26-2-xen-686#1 SMP Wed Sep 21 09:56:47 UTC 2011 i686 GNU / Linux

我必须走正确的道路:

/usr/local/apache/bin** $ **./apachectl -v
  

./ apachectl:第71行:ulimit:打开文件:无法修改限制:不允许操作
  服务器版本:Apache / 2.2.21 (Unix)
  服务器内置:2011年12月17日19:57:53

答案 9 :(得分:5)

在基于Debian的系统上检查包(包括Apache)安装版本的另一种方法是,我们可以使用:

apt-cache policy <package_name>

e.g。对于Apache

apt-cache policy apache2

将显示类似的内容(查看Installed行):

$ apt-cache policy apache2
apache2:
  Installed: (none)
  Candidate: 2.2.22-1ubuntu1.9
  Version table:
     2.2.22-1ubuntu1.9 0
        500 http://hk.archive.ubuntu.com/ubuntu/ precise-updates/main amd64 Packages
        500 http://security.ubuntu.com/ubuntu/ precise-security/main amd64 Packages
     2.2.22-1ubuntu1 0
        500 http://hk.archive.ubuntu.com/ubuntu/ precise/main amd64 Packages

答案 10 :(得分:5)

我尝试运行命令“httpd -V”和“apachectl -V”,但我无法执行并收到错误:

  

-ksh:php:找不到[没有这样的文件或目录]

然后我尝试了另一种方式。我去了服务器上的Apache目录,然后尝试执行命令:

./apachectl -v

这对我有用并返回输出:

Server version: Apache/2.2.20 (Unix)
Server built:   Sep  6 2012 17:22:16

我希望这会有所帮助。

答案 11 :(得分:5)

  1. 您可以使用apachectl -Vapachectl -v。它们都将返回Apache版本信息!

    &#13;
    &#13;
        xgqfrms:~/workspace $ apachectl -v
    
        Server version: Apache/2.4.7 (Ubuntu)
        Server built:   Jul 15 2016 15:34:04
    
    
        xgqfrms:~/workspace $ apachectl -V
    
        Server version: Apache/2.4.7 (Ubuntu)
        Server built:   Jul 15 2016 15:34:04
        Server's Module Magic Number: 20120211:27
        Server loaded:  APR 1.5.1-dev, APR-UTIL 1.5.3
        Compiled using: APR 1.5.1-dev, APR-UTIL 1.5.3
        Architecture:   64-bit
        Server MPM:     prefork
          threaded:     no
            forked:     yes (variable process count)
        Server compiled with....
         -D APR_HAS_SENDFILE
         -D APR_HAS_MMAP
         -D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
         -D APR_USE_SYSVSEM_SERIALIZE
         -D APR_USE_PTHREAD_SERIALIZE
         -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
         -D APR_HAS_OTHER_CHILD
         -D AP_HAVE_RELIABLE_PIPED_LOGS
         -D DYNAMIC_MODULE_LIMIT=256
         -D HTTPD_ROOT="/etc/apache2"
         -D SUEXEC_BIN="/usr/lib/apache2/suexec"
         -D DEFAULT_PIDLOG="/var/run/apache2.pid"
         -D DEFAULT_SCOREBOARD="logs/apache_runtime_status"
         -D DEFAULT_ERRORLOG="logs/error_log"
         -D AP_TYPES_CONFIG_FILE="mime.types"
         -D SERVER_CONFIG_FILE="apache2.conf"
    &#13;
    &#13;
    &#13;

  2. 您可能更喜欢使用apache2 -Vapache2 -v。这似乎更容易记住!

    &#13;
    &#13;
        xgqfrms:~/workspace $ apache2 -v
    
        Server version: Apache/2.4.7 (Ubuntu)
        Server built:   Jul 15 2016 15:34:04
    
    
        xgqfrms:~/workspace $ apache2 -V
    
        Server version: Apache/2.4.7 (Ubuntu)
        Server built:   Jul 15 2016 15:34:04
        Server's Module Magic Number: 20120211:27
        Server loaded:  APR 1.5.1-dev, APR-UTIL 1.5.3
        Compiled using: APR 1.5.1-dev, APR-UTIL 1.5.3
        Architecture:   64-bit
        Server MPM:     prefork
          threaded:     no
            forked:     yes (variable process count)
        Server compiled with....
         -D APR_HAS_SENDFILE
         -D APR_HAS_MMAP
         -D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
         -D APR_USE_SYSVSEM_SERIALIZE
         -D APR_USE_PTHREAD_SERIALIZE
         -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
         -D APR_HAS_OTHER_CHILD
         -D AP_HAVE_RELIABLE_PIPED_LOGS
         -D DYNAMIC_MODULE_LIMIT=256
         -D HTTPD_ROOT="/etc/apache2"
         -D SUEXEC_BIN="/usr/lib/apache2/suexec"
         -D DEFAULT_PIDLOG="/var/run/apache2.pid"
         -D DEFAULT_SCOREBOARD="logs/apache_runtime_status"
         -D DEFAULT_ERRORLOG="logs/error_log"
         -D AP_TYPES_CONFIG_FILE="mime.types"
         -D SERVER_CONFIG_FILE="apache2.conf"
    &#13;
    &#13;
    &#13;

答案 12 :(得分:3)

对我而言apachectl -V无效,但apachectl fullstatus给了我我的版本。

答案 13 :(得分:3)

Apache的一些安装是fubar(想想Oracle的包装,OHS)并且不了解-V标志,也不能直接调用而不会遇到丢失的库错误。

最简单的方法是在httpd二进制文件上使用strings命令(binutils的一部分),在grep中使用可能类似于版本的字符串。例如,假设您的httpd二进制文件位于目录/foo/bar下:

$ strings /foo/bar/httpd  | grep 2.2
GLIBC_2.2.5
Oracle-HTTP-Server/2.2.22 (Unix)
Success_Accepted_202
202 Accepted

大多数二进制文件(不是全部)都包含其版本(至少是其主要版本)作为静态字符串。这是我获取版本的最佳方式(或证实二进制文件的帮助信息与真实的实际情况相符。)

答案 14 :(得分:2)

肯定在shell中输入 / usr / sbin / apache2 -v 是最好和最快捷的方式,顺便提一下,这是另一种选择,以防万一。&#39;在您的服务器中也有PHP,并且您有兴趣以快速的程序步骤收集Apache版本(以及更多信息)。

只需在您的Apache Web根文件夹(或您喜欢的任何内容)中创建一个 info.php 文件,并在其中写下:

<?php
    phpinfo();
?>

现在转到 yoursite.com/info.php (或本地计算机的 localhost / info.php )。

您将在 PHP变量部分中看到您的Apache版本,以下是一个示例:

phpinfo() example dump page

此外,请注意这些步骤显然适用于与PHP集成的任何Web服务器,因此它不仅限于Apache,并且一旦创建该页面在开发时可能很方便(只需要和忘记在生产环境中将其删除!!)

答案 15 :(得分:2)

或者,不那么直接:

nmap -A localhost -p 80

答案 16 :(得分:1)

dlocate -s apache2 | grep '^Version:'