Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2080066
  • 博文数量: 519
  • 博客积分: 10070
  • 博客等级: 上将
  • 技术积分: 3985
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-29 14:05
个人简介

只问耕耘

文章分类

全部博文(519)

文章存档

2016年(1)

2013年(5)

2011年(46)

2010年(220)

2009年(51)

2008年(39)

2007年(141)

2006年(16)

我的朋友

分类:

2007-11-02 10:01:18

使用脚本编制获取服务器版本信息
使用 wsadmin 工具和脚本编制来获取服务器版本信息。
在您开始之前
在启动此任务前,wsadmin 工具必须正在运行。请参阅启动 wsadmin 脚本编制客户机 一文以了解更多信息。
关于本任务
执行以下步骤查询服务器版本信息:
过程
标识服务器并将其指定给 server 变量。
使用 Jacl:
set server [$AdminControl completeObjectName type=Server,name=server1,node=mynode,*]
使用 Jython:
server = AdminControl.completeObjectName('type=Server,name=server1,node=mynode,*')
print server
示例输出:
WebSphere:cell=mycell,name=server1,mbeanIdentifier=server.xml#Server_1,
type=Server,node=mynode,process=server1,processType=ManagedProcess
查询服务器版本。服务器版本信息存储在 serverVersion 属性中。getAttribute 命令返回单个属性的属性值,传递属性名。
注: 要作为非 root 用户运行以下命令,必须对 app_server_root/properties/version/history 目录具有写许可权。
使用 Jacl:
$AdminControl getAttribute $server1 serverVersion
使用 Jython:
print AdminControl.getAttribute(server1, 'serverVersion')
Network Deployment 安装的示例输出如下所示:
IBM WebSphere Application Server Version Report
   ---------------------------------------------------------------------------
        Platform Information
        ------------------------------------------------------------------------
                Name: IBM WebSphere Application Server
                Version: 5.0

        Product Information
        ------------------------------------------------------------------------
                ID: BASE
                Name: IBM WebSphere Application Server
                Build Date: 9/11/02
                Build Level: r0236.11
                Version: 5.0.0

        Product Information
        ------------------------------------------------------------------------
                ID: ND
                Name: IBM WebSphere Application Server for Network Deployment
                Build Date: 9/11/02
                Build Level: r0236.11
                Version: 5.0.0
   ---------------------------------------------------------------------------
   End Report
   ---------------------------------------------------------------------------
阅读(1459) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~