如何找出 Ubuntu 14.04 中安装的 Apache 服务器版本?
答案1
打开终端并输入:
apache2 -v
-v
打印apache2的版本,然后退出。
答案2
您可以从终端输入:(小写-v
)
apachectl -v
或者为了得到更多关于 Apache 的编译信息,请输入:(大写-V
)
apachectl -V
当然,正如@karel提到的,您也可以使用apache2
而不是apachectl
...只是给出一种替代方法。这在Ubuntu 18.04中对我有用,我使用的是Apache 2.4.37。
答案3
如果你在 apache2 中安装了 PHP,你可以在 $_SERVER 变量中或使用phpinfo()
函数找到它:
<?php
var_dump($_SERVER);
phpinfo();
返回(在我的计算机上):
'SERVER_SIGNATURE' => string '<address>Apache/2.4.29 (Ubuntu) Server …</address>
'SERVER_SOFTWARE' => string 'Apache/2.4.29 (Ubuntu)'
# and in phpinfo arrays:
apache2handler
Apache Version Apache/2.4.29 (Ubuntu)