本文概述
- 通过versionInfo.sh查找
- 通过日志文件检查IHS版本
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版本和体系结构级别。
推荐阅读
- appt查看应用包报名和入口页面
- 如何使用SSL证书设置Apache HTTP(详细步骤图解)
- 44个实用的Apache Web Server面试问题及答案
- Apache HTTP安装故障排除指南合集详解
- Docker,Docker Compose,Docker Swarm,Kubernetes之间有什么区别()
- Kubernetes使用教程完整详细图解
- ES6对话框介绍和用法示例
- ES6运算符介绍和用法示例
- Godot文件系统介绍