zoukankan      html  css  js  c++  java
  • Teamcenter10 step-by-step installation in Linux env-Teamcenter 4 tier RichClient Installation

    Introduction

    In this post, we will introduce OTW(over the web) mode to install Teamcenter 4-tier rich client and also use WAM tool to generate it.

    To install the four-tier rich client, you use a Web browser open the URL of a Web application server that serves the Over-the-Web Installer. The four-tier rich client installs silently, with no prompts. Teamcenter administrators configure all installation options and provide all the information necessary to complete installation using Web Application Manager.

    To enable over-the-Web installation for the four-tier rich client, you install the following components on a server host.
    • A rich client distribution server.
    The distribution server software manages the connection between a rich client distribution instance and the Over-the-Web Installer. The Over-the-Web Installer contacts the distribution server for the rich client files to download to the user’s workstation. Only one rich client distribution server is required to manage multiple rich client distribution instances.
    • A rich client distribution instance or instances.
    A rich client distribution instance contains the Over-the-Web Installer and the rich client software to be installed on user workstations. To enable different users to install different configurations of rich client software, you must create a distribution instance for each unique configuration.
    • A third-party Web server.
    You deploy rich client distribution instances in a third-party Web application server.


         After you install and deploy a rich client distribution server and distribution instances, you can change the distribution server contents, add components to a distribution instance, and patch components in a distribution instance using Web Application Manager. The next time users start a rich client installed from that distribution instance, the rich client startup process checks for updates and downloads them to the client hosts.

    image

    Steps

    • A rich client distribution server.

    1) Copy otw ICD files from installation media.

    image

    2) Type the name of distribution server and enter the path to the location.

    image

    3) Verify the related parameters.

    image

    • A rich client distribution instance.

    1) Type the name of distribution instance and enter the path to the location. And add the location of installation media.

    image

    2) Select necessary solution for 4-tier rich client.

    image

    3) Verify the info about distribution instance.

    image

    4) Modify necessary parameters.

    WindowsLocation

    JREWindows32Locaiton

    JREWindows64Location

    image

    5) Set the parameters about HTTPServerTable

    URI format: http://{your web application server host}:{web application port}/tc

    image

    6) Set the parameters about ParentFSCAddressTable.

    image

    7) Start to generating the distribution instance.

    image

    What’s more, we have to patch the rich client if necessary. So we will further doing the following optional steps to patch the distribution instance.

    8) Add the location of path installation media.

    image

    9) Add the related patch solutions into the solution list.

    image

    What’s more , you can check the patch version info by clicking [view component version] button.

    image

    10) Click [reinstall solution] button to generate new distribution instance.

    image

    • A third-party Web server.

    It’s very convenient to install and configure Apache as a third-party Web server.

    1) Install and start Apache

    # yum install httpd
       # chkconfig httpd on
       # service httpd start

    image

    2) Configure Apache

    Modify the value of DocumentRoot in httpd.conf file.

    image

    Verification

    1) Start distribution server

    $ nohup ./start_rmi >>rmi_monitor.log &

    image

    $ nohup ./start_server >>distserver_monitor.log &

    image

    2) use a Web browser open the URL of a Web application server

    http://{distribition server host name}/otwweb/otw.html

    image

    3) Finish installing rich client through OTW in a client.

    image

    image

    4) Login to TC rich client

    image

  • 相关阅读:
    0401. Binary Watch (E)
    0436. Find Right Interval (M)
    0151. Reverse Words in a String (M)
    1344. Angle Between Hands of a Clock (M)
    0435. Non-overlapping Intervals (M)
    0434. Number of Segments in a String (E)
    0063. Unique Paths II (M)
    0062. Unique Paths (M)
    0100. Same Tree (E)
    0190. Reverse Bits (E)
  • 原文地址:https://www.cnblogs.com/adamplm/p/3862853.html
Copyright © 2011-2022 走看看