aixjc
作者aixjc2011-01-27 10:09

在CentOS中安装TSM的ISC

字数 10127阅读 6446评论 1赞 1

      安装ISC遇到下面这个问题:

01 [root@FWDB isc]$ ./setupISC -console
02 InstallShield Wizard
03  
04 Initializing InstallShield Wizard...
05  
06 Preparing Java(tm) Virtual Machine...
07 ...................................
08 ...................................
09  
10 0 % complete
11 10 % complete
12 20 % complete
13 30 % complete
14 40 % complete
15 50 % complete
16 60 % complete
17 70 % complete
18 80 % complete
19 90 % complete
20 100 % complete
21  
22  
23 Installing the Integrated Solutions Console
24    The installation process has started.
25  
26 ==>  Checking for existing versions of the Integrated Solutions Console
27 -      Verifying system and configuration information
28 - Installing the Integrated Solutions Console. Installation can take up to two
29 hours.
30 -      Installing the Integrated Solutions Console patches.
31  
32  
33 Installing the Integrated Solutions Console
34    The installation process has started.
35  
36 ==>  Checking for existing versions of the Integrated Solutions Console
37 ==>  Verifying system and configuration information
38 - Installing the Integrated Solutions Console. Installation can take up to two
39 hours.
40 -      Installing the Integrated Solutions Console patches.
41  
42 Errors occurred during the installation.
43 - An error occurred and product installation failed. Look at the log file
44 /opt/IBM/ISC601/log.txt for details.
45 - An error occurred and product uninstallation failed. Look at the log file
46 /opt/IBM/ISC601/log.txt for details.
47  
48 Press 1 for Next, 3 to Cancel or 4 to Redisplay [1] 1
49  
50 The wizard requires that you logout and log back in.
51  
52 Press 3 to Finish or 4 to Redisplay [3] 3

      提示安装失败,在安装目录 /opt/IBM/ISC601 找到一个log.txt,有如下提示:

01 (Nov 6, 2010 1:56:52 PM), Install, ACProductAction, err, An error occurred and product installation failed.  Look at the log file /opt/IBM/ISC601/log.txt for details.
02 (Nov 6, 2010 1:56:52 PM), Install, ACProductAction, err, ProductException: (error code = 55; message="Response validation failed.  See /opt/IBM/ISC601/Tivoli/dsm/logs/ac_install.log for details.")
03 STACK_TRACE: 13
04 ProductException: (error code = 55; message="Response validation failed.  See /opt/IBM/ISC601/Tivoli/dsm/logs/ac_install.log for details.")
05         at ACProductAction.install(ACProductAction.java:584)
06         at com.installshield.product.service.product.PureJavaProductServiceImpl.installProductAction(PureJavaProductServiceImpl.java:1923)
07         at com.ibm.wizard.platform.linux.LinuxProductServiceImpl.installProductAction(LinuxProductServiceImpl.java:552)
08         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.getResultForProductAction(PureJavaProductServiceImpl.java:5202)
09         at com.installshield.product.service.product.InstallableObjectVisitor.visitComponent(InstallableObjectVisitor.java:369)
10         at com.installshield.product.service.product.InstallableObjectVisitor.visitInstallableComponents(InstallableObjectVisitor.java:333)
11         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBeans(InstallableObjectVisitor.java:133)
12         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.install(PureJavaProductServiceImpl.java:4570)
13         at com.installshield.product.service.product.PureJavaProductServiceImpl$Installer.execute(PureJavaProductServiceImpl.java:3765)
14         at com.installshield.wizard.service.AsynchronousOperation.run(AsynchronousOperation.java:41)
15         at java.lang.Thread.run(Unknown Source)
16  
17 (Nov 6, 2010 2:09:16 PM), Install, com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct, err, An error occurred and product uninstallation failed.  Look at the log file /opt/IBM/ISC601/log.txt for details.
18 (Nov 6, 2010 2:09:16 PM), Install, ACProductAction, err, ProductException: (error code = 1; message="Uninstall failed.")
19 STACK_TRACE: 12
20 ProductException: (error code = 1; message="Uninstall failed.")
21         at ACProductAction.uninstall(ACProductAction.java:635)
22         at com.installshield.product.service.product.PureJavaProductServiceImpl.uninstallProductAction(PureJavaProductServiceImpl.java:1954)
23         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.processActionsFailed(PureJavaProductServiceImpl.java:5145)
24         at com.installshield.product.service.product.InstallableObjectVisitor.visitComponent(InstallableObjectVisitor.java:374)
25         at com.installshield.product.service.product.InstallableObjectVisitor.visitInstallableComponents(InstallableObjectVisitor.java:333)
26         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBeans(InstallableObjectVisitor.java:133)
27         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.install(PureJavaProductServiceImpl.java:4570)
28         at com.installshield.product.service.product.PureJavaProductServiceImpl$Installer.execute(PureJavaProductServiceImpl.java:3765)
29         at com.installshield.wizard.service.AsynchronousOperation.run(AsynchronousOperation.java:41)
30         at java.lang.Thread.run(Unknown Source)

      接着再查看日志文件 /opt/IBM/ISC601/Tivoli/dsm/logs/ac_install.log 有如下提示:

1 ********************************************************************************
2    Starting a new install instance at [November 6, 2010 1:56:24 PM CST]
3 ********************************************************************************
4 [November 6, 2010 1:56:34 PM CST] + /opt/IBM/ISC601/AppServer/java/bin/java -cp /opt/IBM/ISC601/fixup/ISCCheck.jar run -silent -W response.file=/opt/IBM/ISC601/fixup/ISCArchive.rsp
5 [November 6, 2010 1:56:37 PM CST] CWLAA9008: The operating system Linux 2.6.18-194.el5 is not supported.

      我的OS是CentOS  5.5实际上就是RHEL 5.5的社区编译版本,应该与RHEL兼容的,于是乎尝试将 /etc/redhat-release 备份然后修改为:

1 Red Hat Enterprise Linux Client release 5 (Tikanga)

      将目录 /opt/IBM/ISC601 删除然后重新开始安装ISC,成功。

      安装完成后到目录/opt/IBM/ISC601/PortalServer/bin中启动ISC验证安装,又报错:

1 [root@FWDB bin]$ ./startISC
2 ./startISC: line 16: /opt/ISC_Archive_Build/ISC.base/AppServer/java/bin/java: No such file or directory
3 ./startISC: line 22: /opt/ISC_Archive_Build/ISC.base/AppServer/bin/startServer: No such file or directory

      将 IscSetupCmdLine 修改为:

01 [root@FWDB bin]$ vim IscSetupCmdLine
02 #!/bin/sh
03 ISC_RUNTIME_ROOT=/opt/IBM/ISC601
04 ISC_PORTAL_ROOT=$ISC_RUNTIME_ROOT/PortalServer
05 ISC_ECLIPSE_HOME=$ISC_RUNTIME_ROOT/PortalServer/ISCEclipse
06 APP_JAVAHOME=$ISC_RUNTIME_ROOT/AppServer/java/bin
07 WAS_HOME=$ISC_RUNTIME_ROOT/AppServer
08 WAS_PROFILE_NAME=default
09  
10 # ISC_RUNTIME_ROOT=/opt/ISC_Archive_Build/ISC.base
11 # ISC_PORTAL_ROOT=/opt/ISC_Archive_Build/ISC.base/PortalServer
12 # ISC_ECLIPSE_HOME=/opt/ISC_Archive_Build/ISC.base/PortalServer/ISCEclipse
13 # APP_JAVAHOME=/opt/ISC_Archive_Build/ISC.base/AppServer/java/bin
14 # WAS_HOME=/opt/ISC_Archive_Build/ISC.base/AppServer
15 # WAS_PROFILE_NAME=default
16  
17 ISC_ECLIPSE_PORT=8423
18 # ISC_HELP_SERVICE=

      再次启动,成功:

1 [root@FWDB bin]$ ./startISC.sh ISC_Portal
2 ADMU0116I: Tool information is being logged in file
3            /opt/IBM/ISC601/AppServer/profiles/default/logs/ISC_Portal/startServer.log
4 ADMU0128I: Starting tool with the default profile
5 ADMU3100I: Reading configuration for server: ISC_Portal
6 ADMU3200I: Server launched. Waiting for initialization status.
7 ADMU3000I: Server ISC_Portal open for e-business; process id is 16308

如果觉得我的文章对您有用,请点赞。您的支持将鼓励我继续创作!

1

添加新评论1 条评论

akingzakingz系统工程师, 东华软件
2011-06-15 15:15
呵呵,刚刚遇到了同样的问题!!
Ctrl+Enter 发表

作者其他文章

相关问题

相关资料

X社区推广