简体   繁体   English

安装TIBCO以构建EAR文件

[英]Installing TIBCO to build an EAR file

I'm trying to install TIBCO using the universal installer, and passing in the silent file. 我正在尝试使用通用安装程序安装TIBCO,并传递静默文件。 However, whenever I run these commands: 但是,每当我运行以下命令时:

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

I don't get any output and nothing seems to be happening (eg. No folders created, no Tibco installed) 我没有任何输出,似乎也没有任何反应(例如,未创建文件夹,未安装Tibco)

I'm sure I'm missing something here. 我确定我在这里错过了一些东西。 :/ Any help would be appreciated. :/ 任何帮助,将不胜感激。

Also, I don't plan to install the whole TIBCO stack but just the files needed to build EAR files, would that be possible? 另外,我不打算安装整个TIBCO堆栈,而仅打算安装构建EAR文件所需的文件,那有可能吗?

Thanks guys! 多谢你们!

1- Try this silent file and put it in the same folder then installer. 1-尝试使用此无声文件,然后将其放入安装程序所在的文件夹中。 Then just execute: 然后执行:

  ./$installer_bin_file -silent

Silent File: 静音文件:

<?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- If not succeeded, try console option to validate your system environment (memory, disk etc ...). 2-如果未成功,请尝试使用控制台选项来验证您的系统环境(内存,磁盘等)。

3- Yes you can install only EMS and BW components to deploy your APP, but install TEA also for administration purposes. 3-是的,您只能安装EMS和BW组件来部署您的APP,但也可以出于管理目的安装TEA。

BB BB

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM