0

我正在尝试使用通用安装程序安装 TIBCO,并传入静默文件。但是,每当我运行这些命令时:

./tibco_universal_installer_filename -silent -V responseFile=silent_file.silent -is:tempdir /opt/tmp

我没有得到任何输出,似乎什么也没有发生(例如,没有创建文件夹,没有安装 Tibco)

我确定我在这里遗漏了一些东西。:/ 任何帮助,将不胜感激。

另外,我不打算安装整个 TIBCO 堆栈,而只安装构建 EAR 文件所需的文件,这可能吗?

多谢你们!

4

1 回答 1

0

1-试试这个静默文件,然后把它放在同一个文件夹中,然后安装程序。然后只需执行:

  ./$installer_bin_file -silent

静音文件:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
<properties>
<comment>---Universal Installer Silent Installation Properties---</comment>

<!--accept the license agreement-->
<entry key="acceptLicense">true</entry>

<!--the root installation directory-->
<!--if the product does not support multiple instances and TIBCO_HOME has already been set then-->
<!--this value is ignored and the existing TIBCO_HOME is used as the installation root-->
<entry key="installationRoot">/opt/tibco</entry>

<!--If using an existing environment then the installationRoot AND environmentName MUST match a pre-existing environment-->
<!--If creating a new environment then the installationRoot AND environmentName MUST BE UNIQUE and not match a pre-existing environment-->
<entry key="environmentName">TIBCO_HOME</entry>

<!-- The following configuration parameters control the download of all LGPL components used by BW, e.g. Hibernate -->
<!-- LGPLAssemblyLicenseAccepted - true or false to accept the license -->
<!-- LGPLAssemblyDownload - true or false to download the assembly from the public tibco server -->
<!-- LGPLAssemblyPath - if LGPLAssemblyDownload is false, this is the path where the LGPL assembly is located on the system (note that all LGPL assemblies must be in the same directory -->
<entry key="LGPLAssemblyLicenseAccepted">true</entry>
<entry key="LGPLAssemblyDownload">false</entry>
<entry key="LGPLAssemblyPath">/opt/src</entry>

<!--Profiles Selection-->
<!-- The 'selectedProfiles' value is a comma separated list of profiles to install. If a profile is listed which does not exist, then it is ignored and the default profile will be used. At least one profile must be listed if useInstallProfile is set to true -->
<entry key="useInstallProfile">true</entry>
<entry key="selectedProfiles">Typical</entry>

</properties>

2- 如果不成功,请尝试控制台选项来验证您的系统环境(内存、磁盘等...)。

3- 是的,您只能安装 EMS 和 BW 组件来部署您的 APP,但也可以安装 TEA 用于管理目的。

BB

于 2019-09-12T09:05:12.180 回答