如何从 Linux zip 文件安装 WebSphere 8.5?

如何从 Linux zip 文件安装 WebSphere 8.5?

我正在尝试在我的 Ubuntu 12.10 机器上快速评估 IBM WebSphere 8.5。我从 IBM 网站上名为“评估 IBM WebSphere Application Server 试用版”的页面上下载了一个 zip 存档

该 zip 文件的描述如下:

适用于 Linux x86 的安装管理器 1.5.2 和 WebSphere Application Server 基本试用版 v8.5

该 zip 文件本身的名称是:

BASETRIAL.代理.安装程序.linux.gtk.x86_1.5.2000.20120223_0907.zip

它是117MB。

下载后,我解压了文件。但现在我不知道如何开始安装。解压后,我的目录包含以下文件:

 ls -altrh
total 116M
-rwxr-xr-x  1 shibo shibo  62K May  9  2010 userinstc
-rwxr-xr-x  1 shibo shibo  62K May  9  2010 userinst
-rwxr-xr-x  1 shibo shibo  62K May  9  2010 installc
-rwxr-xr-x  1 shibo shibo  62K May  9  2010 install
-rwxr-xr-x  1 shibo shibo  62K May  9  2010 groupinstc
-rwxr-xr-x  1 shibo shibo  62K May  9  2010 groupinst
-rwxr-xr-x  1 shibo shibo 7.7K Jan 24  2012 readme_1.5.2.html
-rwxr-xr-x  1 shibo shibo 260K Feb 22  2012 libcairo-swt.so
-rwxr-xr-x  1 shibo shibo  577 Feb 22  2012 about.html
drwxr-xr-x  2 shibo shibo 4.0K Feb 23  2012 features
-rwxr-xr-x  1 shibo shibo  213 Feb 23  2012 user-silent-install.ini
-rwxr-xr-x  1 shibo shibo  159 Feb 23  2012 userinst.ini
-rwxr-xr-x  1 shibo shibo  204 Feb 23  2012 userinstc.ini
-rwxr-xr-x  1 shibo shibo  206 Feb 23  2012 silent-install.ini
-rwxr-xr-x  1 shibo shibo 4.5K Feb 23  2012 repository.xml
-rwxr-xr-x  1 shibo shibo  162 Feb 23  2012 repository.config
-rwxr-xr-x  1 shibo shibo  155 Feb 23  2012 install.ini
-rwxr-xr-x  1 shibo shibo  200 Feb 23  2012 installc.ini
-rwxr-xr-x  1 shibo shibo  157 Feb 23  2012 groupinst.ini
-rwxr-xr-x  1 shibo shibo  202 Feb 23  2012 groupinstc.ini
-rwxr-xr-x  1 shibo shibo 2.2K Feb 23  2012 consoleinst.sh
drwxr-xr-x  2 shibo shibo 4.0K Feb 24  2012 Offerings
drwxr-xr-x 12 shibo shibo 4.0K Feb 24  2012 documentation
drwxr-xr-x  3 shibo shibo 4.0K Feb 24  2012 configuration
drwxr-xr-x  2 shibo shibo 4.0K Feb 24  2012 about_files
drwxr-xr-x  2 shibo shibo 4.0K Feb 24  2012 native
drwxr-xr-x  2 shibo shibo 4.0K Feb 24  2012 license
drwxr-xr-x  4 shibo shibo 4.0K Feb 24  2012 jre_6.0.0.sr9_20110208_03
drwxr-xr-x  2 shibo shibo 4.0K Feb 24  2012 tools
drwxr-xr-x 11 shibo shibo  56K Feb 24  2012 plugins
-rw-r--r--  1 shibo shibo  265 Feb 24  2012 install.Jan-17-2013.14-26-04.orig.xml
drwxr-xr-x 39 shibo shibo 4.0K Dec  9 22:14 ..
-rw-r--r--  1 shibo shibo  799 Jan 17 20:32 install.xml
-rw-rw-r--  1 shibo shibo 115M Jan 31 19:04 BASETRIAL.agent.installer.linux.gtk.x86_1.5.2000.20120223_0907.zip

我尝试运行明显的.sh 文件,但是它不起作用:

/Downloads$ ./consoleinst.sh 
/tmp/consoleinst-12571.sh: 77: /tmp/consoleinst-12571.sh: /home/shibo/Downloads/./installc: not found

但提到的路径确实存在:

ls -l /home/shibo/Downloads/./installc
-rwxr-xr-x 1 shibo shibo 63005 May  9  2010 /home/shibo/Downloads/./installc

当然,我尝试查看提供的自述文件,但它实际上只说了以下内容;

有关分步安装指示信息,请参阅 Installation Manager 的安装指南或参阅您正在安装的 IBM 产品的信息中心。

前往所提到的信息中心只会将我引导到其他地方,直到我阅读与 WebSphere 无关的任何内容的文档。

为了排除损坏的档案,我还下载了类似的快速版本:

EXPRESSTRIAL.agent.installer.linux.gtk.x86_1.5.2000.20120223_0907.zip

它完全相同,但 diff 表示它们确实不同。解压后的结果与上面显示的结构完全相同,但仍然无法运行任何程序。

我如何启动 WebSphere 8.5 的安装?

答案1

您下载了 32 位版本的 WebSphere,但您使用的是 64 位 Ubuntu(并且未安装 32 位兼容库)。

您可以通过以下两种方式之一解决此问题:

  1. 如果可用,请下载 64 位版本的 WebSphere 。
  2. 在 Ubuntu 上安装 32 位兼容库:

    sudo apt-get install ia32-libs
    

答案2

运行粘贴中名为“install”的可执行文件,它将安装 IBM Installation Manager (IIM) — 如果您从 WebSphere 试用站点下载了它,它将预先加载 WebSphere 试用版的 IIM 存储库知识。

相关内容