如何查找已安装的IBM HTTP Server版本和架构()

本文概述

  • 通过versionInfo.sh查找
  • 通过日志文件检查IHS版本
IBM的HTTP Server基于Apache HTTP, 可以安装在AIX, Linux, Solaris, Windows, HP-UX或z / OS上。
IHS有四个主要版本。
  • IBM HTTP Server 6.0
  • IBM HTTP Server 7.0
  • IBM HTTP Server 8.0
  • IBM HTTP Server 8.5
知道服务器上安装了哪个版本对于技术堆栈审核和确保你具有最新版本至关重要。
这是找出已安装的IBM HTTP Server版本和体系结构的两种方法。
通过versionInfo.sh查找可能是找到服务器上安装的版本的最可靠和最佳方法。
  • 登录到IBM HTTP Server
  • 转到安装路径
  • 转到bin文件夹并执行以下文件
[[email  protected] bin]# ./versionInfo.sh | grep VersionWVER0012I: VersionInfo reporter version 1.15.1.48, dated 2/8/12Version Directory            /opt/IBM/HTTPServer/properties/versionVersion                            8.5.5.9Installed Features    IBM HTTP Server 64-bit with Java, Version 6[[email  protected] bin]#

【如何查找已安装的IBM HTTP Server版本和架构()】要了解架构, 你可以在下面使用grep
[[email  protected] bin]# ./versionInfo.sh | grep ArchArchitecture                x86-64 (64 bit)[[email  protected] bin]#

所以现在你知道在上面的示例中是64位的8.5.5.9。
通过日志文件检查IHS版本如果你没有生产支持, 则可能没有服务器访问权限来执行versionInfo.sh文件以查看版本。在这种情况下, 假设你有权访问日志文件, 则可以使用以下技术。
登录到IBM HTTP Server并访问生成IHS日志的路径
查看error_log文件并查看启动行, 它应读取受通知的版本, 如下所示。
[Mon May 02 06:13:54 2016] [notice] IBM_HTTP_Server/8.5.5.9 (Unix) configured -- resuming normal operations

注意:日志文件将没有体系结构详细信息。
如果要查找服务器上的IBM HTTP Server历史版本, 则可以使用historyInfo.sh。
[[email  protected] bin]# ./historyInfo.shWVER0210I: Copyright (c) IBM Corporation 2002, 2012; All rights reserved.WVER0212I: HistoryInfo Reporter Version 1.7.1.28, Dated 10/18/11--------------------------------------------------------------------------------IBM WebSphere Product History Report--------------------------------------------------------------------------------Report at date and time May 2, 2016 6:21:57 AM PDTInstallation--------------------------------------------------------------------------------Product Directory    /opt/IBM/HTTPServerVersion Directory    /opt/IBM/HTTPServer/properties/versionDTD Directory            /opt/IBM/HTTPServer/properties/version/dtdLog Directory            /var/ibm/InstallationManager/logsInstallation Event--------------------------------------------------------------------------------Install Manager Offering ID            com.ibm.websphere.IHSILAN.v85Action                                                        installVersion                                                    8.5.5.9Package                                                    com.ibm.websphere.IHSILAN.v85_8.5.5009.20160225_0435Log File Name                                        20160502_0337.xmlTimestamp                                                2016-05-02 04:47:47-0700Result                                                        successInstalled Features                                IBM HTTP Server 64-bit with Java, Version 6   --------------------------------------------------------------------------------End History Report--------------------------------------------------------------------------------[[email  protected] bin]#

我希望以上过程可以帮助你找到IBM HTTP Server版本和体系结构级别。

    推荐阅读