Category Archives: IBM Tivoli Monitoring 6

CTRA Server: no transports available, ffffffff. Server shutting down

We run into the CTRA Server: no transports available, ffffffff Server shutting down issue recently on both our Windows and Linux servers. This might happen when the agent starts and the only communication protocol enabled is ip.spipe. The agent doesn’t connect in fact it shuts down after this error message like in this example:

(59D09A0D.0077-1:kraaumsg.cpp,107,"CTRA_msg_no_transports") CTRA Server: no transports available, ffffffff. Server shutting down
(59D09A0D.0078-1:kraafmn.cpp,787,"kglpsrvr") RegisterHandlers() returned error code: -1!
(59D09A0D.0079-1:kraafmn.cpp,788,"kglpsrvr") Ignoring server start-up request!
(59D09A0D.007A-1:kraaumsg.cpp,143,"CTRA_msg_server_exit_status") CTRA Server:  exit status, ffffffff
(59D09A0D.007B-B:signalmanager.cpp,524,"managerThread") Termination signal received.  Exiting...
(59D09A0D.007C-B:khdxprts.cpp,1760,"KHD_stopStatusMgr")  CTExporterStatus object is unavailable!
(59D09A0D.007D-B:kscqueue.cpp,200,"stop") Successfully stopped Audit worker thread
(59D09A0E.0000-C:kcacmdunx.cpp,273,"executeCmd") Shutdown -- before sleep.
(59D09A0E.0001-C:kcacmdunx.cpp,364,"executeCmd") Shutdown processing.
(59D09A0E.0002-C:kcacmdunx.cpp,264,"executeCmd") Shutdown -- before sleep.
(59D09A0E.0003-C:kcacmdunx.cpp,364,"executeCmd") Shutdown processing.

In both cases the solution is very simple.

Linux / Unix

The issue was due to the fact that our custom certificates expired, once the certificates were re-created, copied across and both the remote TEMS and the Linux OS agent restarted, the problem went away.

Windows

On windows the issue was a missing file after upgrading to Fixpack 7. Once the kdebe.dll file is copied from ITM\TMAITM6_x64 to ITM\GSK8_x64\lib64
the problem was solved.

Agent Builder Agent Workspaces and views are messed up after agent upgrade on TEP

This issue had us puzzled for weeks. The issue was that whenever we changed anything on one of our Agent Builder Agent even though the TEP support was correctly installed and the new support files downloaded by the TEP javaws client the views were still messed up, wrong order, incorrect titles, etc. The problem was still around after stopping the agent, clearing offline entry and starting the agent and getting it again into TEP. Just like this agent here:

We figured out that the issue is basically that the agent has to be cleared out from EVERY navigator view where it is present. For some reason it is not enough to clear the offline entry from the Physical view you have to delete them from all views. After the agent is gone from all views in question do the following:

Restart the agent from TEP.

Wait until the agent greys out on the console, then select Clear offline entry from the dropdown menu. The agent will now be gone from the Physical view.

Once the agent has been restarted, it pops back in to the TEP console but now with the correct views and workspaces. Now all you have to do is to assign the agent back to its navigator views.

We can summarize that the whole problem was because the agent was present in multiple navigator views…

Installing IBM Tivoli Monitoring 6.3.0.3 on CentOS 7

As proof of concept today we are going to try to install IBM Tivoli Monitoring 6.3.0.3 on CentOS 7 which should be identical as the Red Hat Linux Server 7 ( RHEL ). We installed the 64bit version of CentOS using the KDE option on a virtual box VM. The Software Compatibility Matrix provided by IBM states a good couple of prerequisites. We installed these prereq. software and added a few on our own to make sure that the installation goes through without any problem.

Set the ip and the hostname in the /etc/hosts file. Either set up static ip or make sure that the DHCP rolls you the same ip all the time.

The following software was installed before the installation as a prerequsite:

The GNU C Library 32bit version this is required by GSkit to install correctly.
yum install glibc.i686

Korn Shell latest version, this is needed by the installer to run correctly.
yum install ksh

This package contains the pamlib.so which is required by the installer.
yum install pam.x86_64

In case you do not have the X installed on your CentOS box:

yum install libX11.x86_64
yum install libXfixes.x86_64
yum install libXi.x86_64

We needed all libstdc ( both 64 and 32 bit ones ) and all compat-libstdc++ ( 32 bit and 64 bit ones as well )

We performed a search to find the latest libraries…

-sh-4.2# yum search libstdc
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
* base: centos.mirroraustria.at
* extras: centos.mirroraustria.at
* updates: ftp.freepark.org
=========================================================================================================== N/S matched: libstdc ============================================================================================================
compat-libstdc++-33.i686 : Compatibility standard C++ libraries
compat-libstdc++-33.x86_64 : Compatibility standard C++ libraries
libstdc++.i686 : GNU Standard C++ Library
libstdc++.x86_64 : GNU Standard C++ Library
libstdc++-devel.i686 : Header files and libraries for C++ development
libstdc++-devel.x86_64 : Header files and libraries for C++ development
libstdc++-docs.x86_64 : Documentation for the GNU standard C++ library
libstdc++-static.i686 : Static libraries for the GNU standard C++ library
libstdc++-static.x86_64 : Static libraries for the GNU standard C++ library

Name and summary matches only, use “search all” for everything.

… and performed the installation

yum install compat-libstdc++-33.i686
yum install compat-libstdc++-33.x86_64
yum install libstdc++.i686
yum install libstdc++.x86_64

We also needed to disable SeLinux as a prereq. by the installer. Edit vim /etc/sysconfig/selinux file and set the SELINUX parameter to disabled as shown below:

# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
#     enforcing – SELinux security policy is enforced.
#     permissive – SELinux prints warnings instead of enforcing.
#     disabled – No SELinux policy is loaded.
SELINUX=disabled
# SELINUXTYPE= can take one of three two values:
#     targeted – Targeted processes are protected,
#     minimum – Modification of targeted policy. Only selected processes are protected.
#     mls – Multi Level Security protection.
SELINUXTYPE=targeted

Now all the required packages and libraries are installed we can go ahead and start the installation:

setarch $(uname -m) –uname-2.6

This command will put in a special shell where uname -r will show 2.6.xxx as a kernel version. Be prepared that all the prereq. checks will fail as CentOS is not a supported platform luckily you can still install the product regardless the failed prereqs.

As a base installation we will use the IBM Tivoli Monitoring 6.3.0.2 installation bundle then upgrade to 6.3.0.3 as there is no 6.3.0.3 stand alone installation package exists yet.

Now start the installation using the install.sh command:

-sh-4.2# ./install.sh
INSTALL

Enter the name of the IBM Tivoli Monitoring directory
[ default = /opt/IBM/ITM ]: /app/IBM/ITM

ITM home directory “/app/IBM/ITM” already exists.
OK to use it [ 1-yes, 2-no; “1” is default ]?

KCI1362W IBM Tivoli Monitoring version 6.3 introduces a number of platform improvements which may require operating system updates. It is important that you ensure this system meets these requirements prior to installing or updating your installation. Please refer to the following technote for more information: http://www.ibm.com/support/docview.wss?uid=swg21623341

Select one of the following:

1) Install products to the local host.
2) Install products to depot for remote deployment (requires TEMS).
3) Install TEMS support for remote seeding
4) Exit install.

Please enter a valid number:  1

Initializing …
Prerequisite scanning for JRE failed:
FAIL        Tivoli Enterprise-supplied JRE    /app/IBM/ITM/logs/prereqscan/20151014-141724/KJR/result.txt
Property                Result        Found                    Expected
============================================================================================================
OS Version                              FAIL            CentOS Linux release 7.1.1503 (Core…     AIX V6.*

Continue with this installation [1-yes, 2-no; “2” is default ]?  1
International Program License Agreement

Part 1 – General Terms

BY DOWNLOADING, INSTALLING, COPYING, ACCESSING, CLICKING ON
AN “ACCEPT” BUTTON, OR OTHERWISE USING THE PROGRAM,
LICENSEE AGREES TO THE TERMS OF THIS AGREEMENT. IF YOU ARE
ACCEPTING THESE TERMS ON BEHALF OF LICENSEE, YOU REPRESENT
AND WARRANT THAT YOU HAVE FULL AUTHORITY TO BIND LICENSEE
TO THESE TERMS. IF YOU DO NOT AGREE TO THESE TERMS,

* DO NOT DOWNLOAD, INSTALL, COPY, ACCESS, CLICK ON AN
“ACCEPT” BUTTON, OR USE THE PROGRAM; AND

* PROMPTLY RETURN THE UNUSED MEDIA, DOCUMENTATION, AND

Press Enter to continue viewing the license agreement, or
enter “1” to accept the agreement, “2” to decline it, “3”
to print it, “4” to read non-IBM terms, or “99” to go back
to the previous screen.
1

Product packages are available in /mnt/downloads/TIVOLI-IMAGES/itm6.3.0.2-LNX64/unix

The following products are currently installed in “/app/IBM/ITM”:

IBM GSKit Security Interface V08.00.50.05 @ Linux x86_64 R2.6, R3.0 (64 bit)

All agents require that application support files that contain agent-specific information be installed on the Tivoli Enterprise Monitoring Server that the agents will connect to, Tivoli Enterprise Portal Server and Tivoli Enterprise Portal desktop and browser client. Install application support before starting to install any Tivoli Enterprise Monitoring Agents.

Product packages are available for this operating system and component support categories:

1) IBM Tivoli Monitoring components for this operating system
2) Tivoli Enterprise Portal Browser Client support
3) Tivoli Enterprise Portal Desktop Client support
4) Tivoli Enterprise Portal Server support
5) Tivoli Enterprise Monitoring Server support
6) Other operating systems

Type the number or type “q” to quit selection
[ number “1” or “IBM Tivoli Monitoring components for this operating system” is default ]:  1

You selected number “1” or “IBM Tivoli Monitoring components for this operating system”

Is the selection correct [ 1=Yes, 2=No ; default is “1” ] ? 1

The following products are available for installation:

1) Summarization and Pruning Agent  V06.30.02.00
2) Tivoli Enterprise Monitoring Automation Server  V06.30.02.00
3) Tivoli Enterprise Monitoring Server  V06.30.02.00
4) Tivoli Enterprise Portal Desktop Client  V06.30.02.00
5) Tivoli Enterprise Portal Server  V06.30.02.00
6) Tivoli Enterprise Services User Interface Extensions  V06.30.02.00
7) Tivoli Performance Analyzer  V06.30.02.00
8) Warehouse Proxy  V06.30.02.00
9) all of the above

Type the numbers that correspond to the products that you want to install. Type “b” to change operating system, or type “q” to quit selection.
If you enter more than one number, separate the numbers by a comma or a space.

Type your selections here:  9

The following products will be installed:

Summarization and Pruning Agent  V06.30.02.00
Tivoli Enterprise Monitoring Automation Server  V06.30.02.00
Tivoli Enterprise Monitoring Server  V06.30.02.00
Tivoli Enterprise Portal Desktop Client  V06.30.02.00
Tivoli Enterprise Portal Server  V06.30.02.00
Tivoli Enterprise Services User Interface Extensions  V06.30.02.00
Tivoli Performance Analyzer  V06.30.02.00
Warehouse Proxy  V06.30.02.00

Are your selections correct [ 1=Yes, 2=No ; default is “1” ] ? 1

Do you want to check prerequisites for the above components? [ 1=Yes, 2=No ; default is “1” ] ? 1
Running Prerequisite Scanner.
This may take a few minutes depending on the number of components being checked and the machine’s performance.
Prerequisite Scanner results for the selected components:
FAIL    Tivoli Enterprise Monitoring Automation Server        /app/IBM/ITM/logs/prereqscan/20151014-141755/COMMON/result.txt
FAIL    IBM Tivoli Monitoring Shared Libraries        /app/IBM/ITM/logs/prereqscan/20151014-141755/COMMON/result.txt
FAIL    Tivoli Enterprise Portal Desktop Client        /app/IBM/ITM/logs/prereqscan/20151014-141755/COMMON/result.txt
FAIL    Tivoli Enterprise Portal Server        /app/IBM/ITM/logs/prereqscan/20151014-141755/COMMON/result.txt
FAIL    IBM GSKit Security Interface        /app/IBM/ITM/logs/prereqscan/20151014-141755/COMMON/result.txt
FAIL    Warehouse Proxy        /app/IBM/ITM/logs/prereqscan/20151014-141755/COMMON/result.txt
FAIL    Tivoli Enterprise-supplied JRE        /app/IBM/ITM/logs/prereqscan/20151014-141755/COMMON/result.txt
FAIL    Tivoli Enterprise Monitoring Server        /app/IBM/ITM/logs/prereqscan/20151014-141755/COMMON/result.txt
FAIL    Tivoli Performance Analyzer        /app/IBM/ITM/logs/prereqscan/20151014-141755/COMMON/result.txt
FAIL    Summarization and Pruning Agent        /app/IBM/ITM/logs/prereqscan/20151014-141755/COMMON/result.txt
FAIL    Tivoli Enterprise Services User Interface Extensions        /app/IBM/ITM/logs/prereqscan/20151014-141755/COMMON/result.txt

FAIL    Prerequisite Scanner Overall Result        /app/IBM/ITM/logs/prereqscan/20151014-141755/COMMON/result.txt

Do you want to continue with the installation [ 1=Yes, 2=No ; default is “2” ] ? 1

Installing IBM Global Security Toolkit

… installing “Summarization and Pruning Agent  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit)”; please wait.

=> installed “Summarization and Pruning Agent  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit)”.
… Initializing component Summarization and Pruning Agent  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit).
… Summarization and Pruning Agent  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit) initialized.

… installing “Tivoli Enterprise Monitoring Automation Server  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit)”; please wait.

=> installed “Tivoli Enterprise Monitoring Automation Server  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit)”.
… Initializing component Tivoli Enterprise Monitoring Automation Server  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit).
… Tivoli Enterprise Monitoring Automation Server  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit) initialized.

… installing “Tivoli Enterprise Monitoring Server  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit)”; please wait.

=> installed “Tivoli Enterprise Monitoring Server  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit)”.
… Initializing component Tivoli Enterprise Monitoring Server  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit).

Please enter TEMS name [ TEMS is default ]: hurefcos001
… creating config file “/app/IBM/ITM/config/ms.config”
… creating file “/app/IBM/ITM/tables/hurefcos001/glb_site.txt.”
… updating “/app/IBM/ITM/config/kbbenv”
… verifying Hot Standby.
… Tivoli Enterprise Monitoring Server  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit) initialized.

… installing “Tivoli Enterprise Portal Desktop Client  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit)”; please wait.

=> installed “Tivoli Enterprise Portal Desktop Client  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit)”.
… Initializing component Tivoli Enterprise Portal Desktop Client  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit).
… Tivoli Enterprise Portal Desktop Client  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit) initialized.

… installing “Tivoli Enterprise Portal Server  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit)”; please wait.

IBM Eclipse Help Server will be installed as a prerequisite to Tivoli Enterprise Portal Server.

=> installed “Tivoli Enterprise Portal Server  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit)”.
… Initializing component Tivoli Enterprise Portal Server  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit).
Tivoli Enterprise Portal server configuration was updated to reflect Eclipse Help Server configuration changes.
… Tivoli Enterprise Portal Server  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit) initialized.

… installing “Tivoli Enterprise Services User Interface Extensions  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit)”; please wait.

=> installed “Tivoli Enterprise Services User Interface Extensions  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit)”.
… Initializing component Tivoli Enterprise Services User Interface Extensions  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit).
… Tivoli Enterprise Services User Interface Extensions  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit) initialized.

… installing “Tivoli Performance Analyzer  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit)”; please wait.

=> installed “Tivoli Performance Analyzer  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit)”.
… Initializing component Tivoli Performance Analyzer  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit).
… Tivoli Performance Analyzer  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit) initialized.

… installing “Warehouse Proxy  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit)”; please wait.

=> installed “Warehouse Proxy  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit)”.
… Initializing component Warehouse Proxy  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit).
… Warehouse Proxy  V06.30.02.00 for Linux x86_64 R2.6, R3.0 (64 bit) initialized.

If you are installing Tivoli Enterprise Portal Server (TEPS) or Tivoli Enterprise Portal Desktop Client (TEP) for the first time you will probably want to install product support to the TEPS and TEP for the agent products which you plan to use. This gives you product specific function within the TEP. To install support packages choose yes below or run the install again at a later time and when prompted to choose an operating system or component support category choose the appropriate support category.

Do you want to install additional products or product support packages [ 1=Yes, 2=No ; default is “2” ] ? 2
… postprocessing; please wait.
… finished postprocessing.
Installation step complete.

Following Tivoli Enterprise Monitoring Server product support were installed:
*) Monitoring Agent for IBM Tivoli Monitoring 5.x Endpoint
*) Warehouse Proxy
*) Monitoring Agent for i5/OS
*) Monitoring Agent for UNIX OS
*) Monitoring Agent for Windows OS
*) Tivoli Performance Analyzer
*) Tivoli Enterprise Monitoring Server
*) Summarization and Pruning Agent
*) Monitoring Agent for UNIX Logs
*) Universal Agent
*) Agentless Monitoring for Windows Operating Systems
*) Monitoring Agent for Linux OS
*) Agentless Monitoring for AIX Operating Systems
*) Agentless Monitoring for Linux Operating Systems
*) Agentless Monitoring for HP-UX Operating Systems
*) Agentless Monitoring for Solaris Operating Systems

Note: This operation causes the monitoring server to restart.
Do you want to seed product support on the Tivoli Enterprise Monitoring Server? [ 1=Yes, 2=No ; default is “1” ] ? 1
Starting TEMS…
TEMS started…

The following new Tivoli Enterprise Monitoring Server product support packages will be seeded:
*) Monitoring Agent for IBM Tivoli Monitoring 5.x Endpoint
*) Warehouse Proxy
*) Monitoring Agent for i5/OS
*) Monitoring Agent for UNIX OS
*) Monitoring Agent for Windows OS
*) Tivoli Performance Analyzer
*) Summarization and Pruning Agent
*) Monitoring Agent for UNIX Logs
*) Universal Agent
*) Agentless Monitoring for Windows Operating Systems
*) Monitoring Agent for Linux OS
*) Agentless Monitoring for AIX Operating Systems
*) Agentless Monitoring for Linux Operating Systems
*) Agentless Monitoring for HP-UX Operating Systems
*) Agentless Monitoring for Solaris Operating Systems

The following previously seeded Tivoli Enterprise Monitoring Server product support packages will be re-seeded:
*) Tivoli Enterprise Monitoring Server

Choose one of the following options to add or update the situation distribution definition to include the default managed system groups:

1) ALL – This option adds the default managed system groups to all the applicable situations. Note that not all situations have the default managed group setting. For some, you might need to manually define the distribution in the Tivoli Enterprise Portal due to the specific content of the agent support package.
2) NONE – The default managed system group is not added to any situation.
3) NEW – This option adds the default managed system groups to all applicable situations from the product support packages that are being seeded for the first time. Note that not all situations have the default managed group setting. For some, you might need to manually define the distribution in the Tivoli Enterprise Portal due to the specific content of the agent support package. Modifications are not made to managed system groups in upgraded product support packages.

Type your selections here [ number “3” or “NEW” is default ]:
1

Seeding support for Monitoring Agent for IBM Tivoli Monitoring 5.x Endpoint [1 of 16]
Product support seeding completed…
Seeding support for Warehouse Proxy [2 of 16]
Product support seeding completed…
Seeding support for Monitoring Agent for i5/OS [3 of 16]
Product support seeding completed…
Seeding support for Monitoring Agent for UNIX OS [4 of 16]
Product support seeding completed…
Seeding support for Monitoring Agent for Windows OS [5 of 16]
Product support seeding completed…
Seeding support for Tivoli Performance Analyzer [6 of 16]
Product support seeding completed…
Seeding support for Tivoli Enterprise Monitoring Server [7 of 16]
Product support seeding completed…
Seeding support for Summarization and Pruning Agent [8 of 16]
Product support seeding completed…
Seeding support for Monitoring Agent for UNIX Logs [9 of 16]
Product support seeding completed…
Seeding support for Universal Agent [10 of 16]
Product support seeding completed…
Seeding support for Agentless Monitoring for Windows Operating Systems [11 of 16]
Product support seeding completed…
Seeding support for Monitoring Agent for Linux OS [12 of 16]
Product support seeding completed…
Seeding support for Agentless Monitoring for AIX Operating Systems [13 of 16]
Product support seeding completed…
Seeding support for Agentless Monitoring for Linux Operating Systems [14 of 16]
Product support seeding completed…
Seeding support for Agentless Monitoring for HP-UX Operating Systems [15 of 16]
Product support seeding completed…
Seeding support for Agentless Monitoring for Solaris Operating Systems [16 of 16]
Product support seeding completed…
Stopping TEMS…
TEMS stopped…
All supports successfully seeded.

You may now configure any locally installed IBM Tivoli Monitoring product via the “/app/IBM/ITM/bin/itmcmd config” command.

Automatic start at system initialization has been configured.
Automatic stop at system shutdown has been configured.

The install.sh command creates most of directories and files with world write permissions. IBM Tivoli Monitoring provides the secureMain utility to helps you keep the monitoring environment secured. You can secure this installation now or manually execute the secureMain utility later. For more information see Appendix G. Securing your IBM Tivoli Monitoring installation on Linux or UNIX in the IBM Tivoli Monitoring Installation and Setup Guide.

Do you want to secure this IBM Tivoli Monitoring installation [ 1-yes, 2-no; “2” is default ]?

After the installation we have started the Manage Tivoli Enterprise Montoring Services, configured the Server as HUB TEMS and started it.

centosmanage

Applying IBM Tivoli Monitoring 6.3.0.3 ( Fix Pack 3 ) on Cent OS7

The next step is to apply Fixpack 3 on the current ITM ( 6.3.0.2 ) level. Locate the 6.3.0.3 installation directory and kick off the installation with the install.sh installer script.

-sh-4.2# ./install.sh
UPGRADE

Enter the name of the IBM Tivoli Monitoring directory
[ default = /opt/IBM/ITM ]: /app/IBM/ITM

ITM home directory “/app/IBM/ITM” already exists.
OK to use it [ 1-yes, 2-no; “1” is default ]?  1

The Manage Tivoli Enterprise Monitoring Services is running in the background, please close it before continuing.
Continue with this installation [ 1-yes, 2-no; “1” is default ]?  1

The following processes are currently running:

Product = Tivoli Enterprise Monitoring Server  PID = 19904
install.sh warning: Existing products found to be running will be restarted during installation., continuing …

Continue with this installation [ 1-yes, 2-no; “1” is default ]?  1
Stopping TEMS…
It can take up to ten minutes.
TEMS stopped…
/app/IBM/ITM

KCI1362W IBM Tivoli Monitoring version 6.3 introduces a number of platform improvements which may require operating system updates. It is important that you ensure this system meets these requirements prior to installing or updating your installation. Please refer to the following technote for more information: http://www.ibm.com/support/docview.wss?uid=swg21623341

Select one of the following:

1) Install products to the local host.
2) Install products to depot for remote deployment (requires TEMS).
3) Install TEMS support for remote seeding
4) Exit install.

Please enter a valid number:  1

Initializing …
Prerequisite scanning for JRE failed:
FAIL        Tivoli Enterprise-supplied JRE    /app/IBM/ITM/logs/prereqscan/20151014-145153/KJR/result.txt
Property                Result        Found                    Expected
============================================================================================================
OS Version                              FAIL            CentOS Linux release 7.1.1503 (Core…     regex{AIX V[67].*}

Continue with this installation [1-yes, 2-no; “2” is default ]?  1
International Program License Agreement

Part 1 – General Terms

BY DOWNLOADING, INSTALLING, COPYING, ACCESSING, CLICKING ON
AN “ACCEPT” BUTTON, OR OTHERWISE USING THE PROGRAM,
LICENSEE AGREES TO THE TERMS OF THIS AGREEMENT. IF YOU ARE
ACCEPTING THESE TERMS ON BEHALF OF LICENSEE, YOU REPRESENT
AND WARRANT THAT YOU HAVE FULL AUTHORITY TO BIND LICENSEE
TO THESE TERMS. IF YOU DO NOT AGREE TO THESE TERMS,

* DO NOT DOWNLOAD, INSTALL, COPY, ACCESS, CLICK ON AN
“ACCEPT” BUTTON, OR USE THE PROGRAM; AND

* PROMPTLY RETURN THE UNUSED MEDIA, DOCUMENTATION, AND

Press Enter to continue viewing the license agreement, or
enter “1” to accept the agreement, “2” to decline it, “3”
to print it, “4” to read non-IBM terms, or “99” to go back
to the previous screen.
1

Product packages are available in /mnt/downloads/TIVOLI-IMAGES/itm6.3.0.3-LNX64/unix

The following products are currently installed in “/app/IBM/ITM”:

IBM Eclipse Help Server V06.30.02.00 @ Linux Intel R2.6, R3.0 (32 bit)/Intel R2.6 GCC 2.9.5 (64 bit)/Intel R2.6, R3.0 (64 bit)/x86_64 R2.6, R3.0 (32 bit)/x86_64 R2.6, R3.0 (64 bit)
IBM GSKit Security Interface V08.00.50.05 @ Linux Intel R2.4 (32 bit)/Intel R2.6, R3.0 (32 bit)/x86_64 R2.6, R3.0 (32 bit)
IBM GSKit Security Interface V08.00.50.05 @ Linux x86_64 R2.6, R3.0 (64 bit)
IBM HTTP Server V08.00.06.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
IBM Installation Manager V01.06.03.01 @ Linux x86_64 R2.6, R3.0 (64 bit)
IBM Tivoli Enterprise Portal Server Extensions V08.00.06.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Summarization and Pruning Agent V06.30.02.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Monitoring Automation Server V06.30.02.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Monitoring SOAP Server V06.30.02.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Monitoring Server V06.30.02.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Portal Browser Client V06.30.02.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Portal Desktop Client V06.30.02.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Portal Server V06.30.02.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Services User Interface Extensions V06.30.02.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Services User Interface V06.30.02.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Performance Analyzer V06.30.02.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Warehouse Proxy V06.30.02.00 @ Linux x86_64 R2.6, R3.0 (64 bit)

All agents require that application support files that contain agent-specific information be installed on the Tivoli Enterprise Monitoring Server that the agents will connect to, Tivoli Enterprise Portal Server and Tivoli Enterprise Portal desktop and browser client. Install application support before starting to install any Tivoli Enterprise Monitoring Agents.

Product packages are available for this operating system and component support categories:

1) IBM Tivoli Monitoring components for this operating system
2) Tivoli Enterprise Portal Browser Client support
3) Tivoli Enterprise Portal Desktop Client support
4) Tivoli Enterprise Portal Server support
5) Tivoli Enterprise Monitoring Server support
6) Other operating systems

Type the number or type “q” to quit selection
[ number “1” or “IBM Tivoli Monitoring components for this operating system” is default ]:  1

You selected number “1” or “IBM Tivoli Monitoring components for this operating system”

Is the selection correct [ 1=Yes, 2=No ; default is “1” ] ? 1

The following products are available for installation:

1) Summarization and Pruning Agent  V06.30.03.00
2) Tivoli Enterprise Monitoring Automation Server  V06.30.03.00
3) Tivoli Enterprise Monitoring Server  V06.30.03.00
4) Tivoli Enterprise Portal Desktop Client  V06.30.03.00
5) Tivoli Enterprise Portal Server  V06.30.03.00
6) Tivoli Enterprise Services User Interface Extensions  V06.30.03.00
7) Tivoli Performance Analyzer  V06.30.03.00
8) Warehouse Proxy  V06.30.03.00
9) all of the above

Type the numbers that correspond to the products that you want to install. Type “b” to change operating system, or type “q” to quit selection.
If you enter more than one number, separate the numbers by a comma or a space.

Type your selections here:  9

The following products will be installed:

Summarization and Pruning Agent  V06.30.03.00
Tivoli Enterprise Monitoring Automation Server  V06.30.03.00
Tivoli Enterprise Monitoring Server  V06.30.03.00
Tivoli Enterprise Portal Desktop Client  V06.30.03.00
Tivoli Enterprise Portal Server  V06.30.03.00
Tivoli Enterprise Services User Interface Extensions  V06.30.03.00
Tivoli Performance Analyzer  V06.30.03.00
Warehouse Proxy  V06.30.03.00

Are your selections correct [ 1=Yes, 2=No ; default is “1” ] ? 1

Do you want to check prerequisites for the above components? [ 1=Yes, 2=No ; default is “1” ] ? 2

Installing IBM Global Security Toolkit

Installing prerequisite components

… installing package “axlx8266”; please wait.

=> installed package “axlx8266”.
… installing package “uilx8266”; please wait.

=> installed package “uilx8266”.
… installing package “uelx8266”; please wait.

=> installed package “uelx8266”.
… installing package “shlx8266”; please wait.

=> installed package “shlx8266”.
… installing package “axli6263”; please wait.

=> installed package “axli6263”.
… installing package “jrli6263”; please wait.

=> installed package “jrli6263”.
… installing package “cwlx8266”; please wait.

=> installed package “cwlx8266”.
… installing package “kfli6263”; please wait.

=> installed package “kfli6263”.

… installing “Summarization and Pruning Agent  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit)”; please wait.

=> installed “Summarization and Pruning Agent  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit)”.
… Initializing component Summarization and Pruning Agent  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit).
… Summarization and Pruning Agent  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit) initialized.

… installing “Tivoli Enterprise Monitoring Automation Server  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit)”; please wait.

=> installed “Tivoli Enterprise Monitoring Automation Server  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit)”.
… Initializing component Tivoli Enterprise Monitoring Automation Server  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit).
… Tivoli Enterprise Monitoring Automation Server  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit) initialized.

… installing “Tivoli Enterprise Monitoring Server  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit)”; please wait.

=> installed “Tivoli Enterprise Monitoring Server  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit)”.
… Initializing component Tivoli Enterprise Monitoring Server  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit).

The following TEMS are installed in /app/IBM/ITM:
hurefcos001
… creating config file “/app/IBM/ITM/config/ms.config”
… creating file “/app/IBM/ITM/tables/hurefcos001/glb_site.txt.”
… updating “/app/IBM/ITM/config/kbbenv”
… verifying Hot Standby.
… Tivoli Enterprise Monitoring Server  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit) initialized.

… installing “Tivoli Enterprise Portal Desktop Client  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit)”; please wait.

=> installed “Tivoli Enterprise Portal Desktop Client  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit)”.
… Initializing component Tivoli Enterprise Portal Desktop Client  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit).
… Tivoli Enterprise Portal Desktop Client  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit) initialized.

… installing “Tivoli Enterprise Portal Server  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit)”; please wait.

=> installed “Tivoli Enterprise Portal Server  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit)”.
… Initializing component Tivoli Enterprise Portal Server  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit).
Tivoli Enterprise Portal server configuration was updated to reflect Eclipse Help Server configuration changes.
… Tivoli Enterprise Portal Server  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit) initialized.

… installing “Tivoli Enterprise Services User Interface Extensions  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit)”; please wait.

=> installed “Tivoli Enterprise Services User Interface Extensions  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit)”.
… Initializing component Tivoli Enterprise Services User Interface Extensions  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit).
… Tivoli Enterprise Services User Interface Extensions  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit) initialized.

… installing “Tivoli Performance Analyzer  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit)”; please wait.

=> installed “Tivoli Performance Analyzer  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit)”.
… Initializing component Tivoli Performance Analyzer  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit).
… Tivoli Performance Analyzer  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit) initialized.

… installing “Warehouse Proxy  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit)”; please wait.

=> installed “Warehouse Proxy  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit)”.
… Initializing component Warehouse Proxy  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit).
… Warehouse Proxy  V06.30.03.00 for Linux x86_64 R2.6, R3.0 (64 bit) initialized.

If you are installing Tivoli Enterprise Portal Server (TEPS) or Tivoli Enterprise Portal Desktop Client (TEP) for the first time you will probably want to install product support to the TEPS and TEP for the agent products which you plan to use. This gives you product specific function within the TEP. To install support packages choose yes below or run the install again at a later time and when prompted to choose an operating system or component support category choose the appropriate support category.

Do you want to install additional products or product support packages [ 1=Yes, 2=No ; default is “2” ] ? 2
… postprocessing; please wait.
… finished postprocessing.
Installation step complete.

Following Tivoli Enterprise Monitoring Server product support were installed:
*) Monitoring Agent for IBM Tivoli Monitoring 5.x Endpoint
*) Warehouse Proxy
*) Monitoring Agent for i5/OS
*) Monitoring Agent for UNIX OS
*) Monitoring Agent for Windows OS
*) Tivoli Performance Analyzer
*) Tivoli Enterprise Monitoring Server
*) Summarization and Pruning Agent
*) Monitoring Agent for UNIX Logs
*) Universal Agent
*) Agentless Monitoring for Windows Operating Systems
*) Monitoring Agent for Linux OS
*) Agentless Monitoring for AIX Operating Systems
*) Agentless Monitoring for Linux Operating Systems
*) Agentless Monitoring for HP-UX Operating Systems
*) Agentless Monitoring for Solaris Operating Systems

Note: This operation causes the monitoring server to restart.
Do you want to seed product support on the Tivoli Enterprise Monitoring Server? [ 1=Yes, 2=No ; default is “1” ] ? 1
Starting TEMS…
TEMS started…

The following new Tivoli Enterprise Monitoring Server product support packages will be seeded:
*) Tivoli Performance Analyzer

The following previously seeded Tivoli Enterprise Monitoring Server product support packages will be re-seeded:
*) Monitoring Agent for IBM Tivoli Monitoring 5.x Endpoint
*) Warehouse Proxy
*) Monitoring Agent for i5/OS
*) Monitoring Agent for UNIX OS
*) Monitoring Agent for Windows OS
*) Tivoli Enterprise Monitoring Server
*) Summarization and Pruning Agent
*) Monitoring Agent for UNIX Logs
*) Universal Agent
*) Agentless Monitoring for Windows Operating Systems
*) Monitoring Agent for Linux OS
*) Agentless Monitoring for AIX Operating Systems
*) Agentless Monitoring for Linux Operating Systems
*) Agentless Monitoring for HP-UX Operating Systems
*) Agentless Monitoring for Solaris Operating Systems

Choose one of the following options to add or update the situation distribution definition to include the default managed system groups:

1) ALL – This option adds the default managed system groups to all the applicable situations. Note that not all situations have the default managed group setting. For some, you might need to manually define the distribution in the Tivoli Enterprise Portal due to the specific content of the agent support package.
2) NONE – The default managed system group is not added to any situation.
3) NEW – This option adds the default managed system groups to all applicable situations from the product support packages that are being seeded for the first time. Note that not all situations have the default managed group setting. For some, you might need to manually define the distribution in the Tivoli Enterprise Portal due to the specific content of the agent support package. Modifications are not made to managed system groups in upgraded product support packages.

Type your selections here [ number “3” or “NEW” is default ]:
1

Seeding support for Monitoring Agent for IBM Tivoli Monitoring 5.x Endpoint [1 of 16]
Product support seeding completed…
Seeding support for Warehouse Proxy [2 of 16]
Product support seeding completed…
Seeding support for Monitoring Agent for i5/OS [3 of 16]
Product support seeding completed…
Seeding support for Monitoring Agent for UNIX OS [4 of 16]
Product support seeding completed…
Seeding support for Monitoring Agent for Windows OS [5 of 16]
Product support seeding completed…
Seeding support for Tivoli Performance Analyzer [6 of 16]
Product support seeding completed…
Seeding support for Tivoli Enterprise Monitoring Server [7 of 16]
Product support seeding completed…
Seeding support for Summarization and Pruning Agent [8 of 16]
Product support seeding completed…
Seeding support for Monitoring Agent for UNIX Logs [9 of 16]
Product support seeding completed…
Seeding support for Universal Agent [10 of 16]
Product support seeding completed…
Seeding support for Agentless Monitoring for Windows Operating Systems [11 of 16]
Product support seeding completed…
Seeding support for Monitoring Agent for Linux OS [12 of 16]
Product support seeding completed…
Seeding support for Agentless Monitoring for AIX Operating Systems [13 of 16]
Product support seeding completed…
Seeding support for Agentless Monitoring for Linux Operating Systems [14 of 16]
Product support seeding completed…
Seeding support for Agentless Monitoring for HP-UX Operating Systems [15 of 16]
Product support seeding completed…
Seeding support for Agentless Monitoring for Solaris Operating Systems [16 of 16]
Product support seeding completed…
Stopping TEMS…
TEMS stopped…
All supports successfully seeded.

You may now configure any locally installed IBM Tivoli Monitoring product via the “/app/IBM/ITM/bin/itmcmd config” command.

Automatic start at system initialization has been configured.
Automatic stop at system shutdown has been configured.

The install.sh command creates most of directories and files with world write permissions. IBM Tivoli Monitoring provides the secureMain utility to helps you keep the monitoring environment secured. You can secure this installation now or manually execute the secureMain utility later. For more information see Appendix G. Securing your IBM Tivoli Monitoring installation on Linux or UNIX in the IBM Tivoli Monitoring Installation and Setup Guide.

Do you want to secure this IBM Tivoli Monitoring installation [ 1-yes, 2-no; “2” is default ]?
Starting TEMS…
It can take up to ten minutes.
TEMS started…
The Warehouse Proxy and/or the Summarization and Pruning agents are not started automatically after the upgrade is completed. Dependent upon the installed agents and the associated attribute groups enabled for historical collection and whether limited database permissions are granted to the warehouse user, a database administrator might need to use the Warehouse Publication Tool to generate a script with the necessary changes for the database. Information regarding these required steps can be found in the IBM Tivoli Monitoring Installation and Setup Guide.
[1]+  Done                    /app/IBM/ITM/bin/itmcmd manage  (wd: /mnt/downloads/TIVOLI-IMAGES/itm6.3.0.2-LNX64)
(wd now: /mnt/downloads/TIVOLI-IMAGES/itm6.3.0.3-LNX64)

As you can see from the following screenshot the installation went well and FP3 was successfully applied.

centosmanage6303

Applying IBM Tivoli Monitoring 6.3.0.3 Support Packages on CentOS 7

The next step is to apply the the following support packages:

– Tivoli Enterprise Portal Browser Client support
– Tivoli Enterprise Portal Desktop Client support
– Tivoli Enterprise Portal Server support

We restart the 6.3.0.3 installation bundle using ./install.sh

The following products are currently installed in “/app/IBM/ITM”:

IBM Eclipse Help Server V06.30.03.00 @ Linux Intel R2.6, R3.0 (32 bit)/Intel R2.6 GCC 2.9.5 (64 bit)/Intel R2.6, R3.0 (64 bit)/x86_64 R2.6, R3.0 (32 bit)/x86_64 R2.6, R3.0 (64 bit)
IBM GSKit Security Interface V08.00.50.20 @ Linux Intel R2.4 (32 bit)/Intel R2.6, R3.0 (32 bit)/x86_64 R2.6, R3.0 (32 bit)
IBM GSKit Security Interface V08.00.50.20 @ Linux x86_64 R2.6, R3.0 (64 bit)
IBM HTTP Server V08.00.06.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
IBM Installation Manager V01.06.03.01 @ Linux x86_64 R2.6, R3.0 (64 bit)
IBM Tivoli Enterprise Portal Server Extensions V08.00.06.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Summarization and Pruning Agent V06.30.03.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Monitoring Automation Server V06.30.03.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Monitoring SOAP Server V06.30.03.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Monitoring Server V06.30.03.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Portal Browser Client V06.30.03.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Portal Desktop Client V06.30.03.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Portal Server V06.30.03.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Services User Interface Extensions V06.30.03.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Services User Interface V06.30.03.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Performance Analyzer V06.30.03.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Warehouse Proxy V06.30.03.00 @ Linux x86_64 R2.6, R3.0 (64 bit)

All agents require that application support files that contain agent-specific information be installed on the Tivoli Enterprise Monitoring Server that the agents will connect to, Tivoli Enterprise Portal Server and Tivoli Enterprise Portal desktop and browser client. Install application support before starting to install any Tivoli Enterprise Monitoring Agents.

Product packages are available for this operating system and component support categories:

1) IBM Tivoli Monitoring components for this operating system
 2) Tivoli Enterprise Portal Browser Client support
 3) Tivoli Enterprise Portal Desktop Client support
 4) Tivoli Enterprise Portal Server support
5) Tivoli Enterprise Monitoring Server support
6) Other operating systems

Type the number or type “q” to quit selection
[ number “1” or “IBM Tivoli Monitoring components for this operating system” is default ]:  2

You selected number “2” or “Tivoli Enterprise Portal Browser Client support”

Is the selection correct [ 1=Yes, 2=No ; default is “1” ] ? 1

The following application supports are available for installation:

1) Agentless Monitoring for AIX Operating Systems  V06.30.03.00
2) Agentless Monitoring for HP-UX Operating Systems  V06.30.03.00
3) Agentless Monitoring for Linux Operating Systems  V06.30.03.00
4) Agentless Monitoring for Solaris Operating Systems  V06.30.03.00
5) Agentless Monitoring for Windows Operating Systems  V06.30.03.00
6) Monitoring Agent for Linux OS  V06.30.03.00
7) Monitoring Agent for UNIX Logs  V06.23.05.00
8) Monitoring Agent for UNIX OS  V06.30.03.00
9) Monitoring Agent for Windows OS  V06.30.03.00
10) Monitoring Agent for i5/OS  V06.30.03.00
11) Summarization and Pruning Agent  V06.30.03.00
12) TEC GUI Integration  V06.30.03.00
13) Tivoli Performance Analyzer  V06.30.03.00
14) Universal Agent  V06.23.05.00
15) Warehouse Proxy  V06.30.03.00
16) all of the above

Type the numbers that correspond to the products that you want to install. Type “b” to change operating system, or type “q” to quit selection.
If you enter more than one number, separate the numbers by a comma or a space.

Type your selections here:  16

The following products will be installed:

Agentless Monitoring for AIX Operating Systems  V06.30.03.00
Agentless Monitoring for HP-UX Operating Systems  V06.30.03.00
Agentless Monitoring for Linux Operating Systems  V06.30.03.00
Agentless Monitoring for Solaris Operating Systems  V06.30.03.00
Agentless Monitoring for Windows Operating Systems  V06.30.03.00
Monitoring Agent for Linux OS  V06.30.03.00
Monitoring Agent for UNIX Logs  V06.23.05.00
Monitoring Agent for UNIX OS  V06.30.03.00
Monitoring Agent for Windows OS  V06.30.03.00
Monitoring Agent for i5/OS  V06.30.03.00
Summarization and Pruning Agent  V06.30.03.00
TEC GUI Integration  V06.30.03.00
Tivoli Performance Analyzer  V06.30.03.00
Universal Agent  V06.23.05.00
Warehouse Proxy  V06.30.03.00

Are your selections correct [ 1=Yes, 2=No ; default is “1” ] ? 1

… installing “Agentless Monitoring for AIX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”; please wait.

=> installed “Agentless Monitoring for AIX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”.
… Initializing component Agentless Monitoring for AIX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support.
… Agentless Monitoring for AIX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support initialized.

… installing “Agentless Monitoring for HP-UX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”; please wait.

=> installed “Agentless Monitoring for HP-UX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”.
… Initializing component Agentless Monitoring for HP-UX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support.
… Agentless Monitoring for HP-UX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support initialized.

… installing “Agentless Monitoring for Linux Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”; please wait.

=> installed “Agentless Monitoring for Linux Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”.
… Initializing component Agentless Monitoring for Linux Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support.
… Agentless Monitoring for Linux Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support initialized.

… installing “Agentless Monitoring for Solaris Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”; please wait.

=> installed “Agentless Monitoring for Solaris Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”.
… Initializing component Agentless Monitoring for Solaris Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support.
… Agentless Monitoring for Solaris Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support initialized.

… installing “Agentless Monitoring for Windows Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”; please wait.

=> installed “Agentless Monitoring for Windows Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”.
… Initializing component Agentless Monitoring for Windows Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support.
… Agentless Monitoring for Windows Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support initialized.

… installing “Monitoring Agent for Linux OS  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”; please wait.

=> installed “Monitoring Agent for Linux OS  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”.
… Initializing component Monitoring Agent for Linux OS  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support.
… Monitoring Agent for Linux OS  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support initialized.

… installing “Monitoring Agent for UNIX Logs  V06.23.05.00 for Tivoli Enterprise Portal Browser Client support”; please wait.

=> installed “Monitoring Agent for UNIX Logs  V06.23.05.00 for Tivoli Enterprise Portal Browser Client support”.
… Initializing component Monitoring Agent for UNIX Logs  V06.23.05.00 for Tivoli Enterprise Portal Browser Client support.
… Monitoring Agent for UNIX Logs  V06.23.05.00 for Tivoli Enterprise Portal Browser Client support initialized.

… installing “Monitoring Agent for UNIX OS  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”; please wait.

=> installed “Monitoring Agent for UNIX OS  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”.
… Initializing component Monitoring Agent for UNIX OS  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support.
… Monitoring Agent for UNIX OS  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support initialized.

… installing “Monitoring Agent for Windows OS  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”; please wait.

=> installed “Monitoring Agent for Windows OS  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”.
… Initializing component Monitoring Agent for Windows OS  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support.
… Monitoring Agent for Windows OS  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support initialized.

… installing “Monitoring Agent for i5/OS  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”; please wait.

=> installed “Monitoring Agent for i5/OS  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”.
… Initializing component Monitoring Agent for i5/OS  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support.
… Monitoring Agent for i5/OS  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support initialized.

… installing “Summarization and Pruning Agent  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”; please wait.

=> installed “Summarization and Pruning Agent  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”.
… Initializing component Summarization and Pruning Agent  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support.
… Summarization and Pruning Agent  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support initialized.

… installing “TEC GUI Integration  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”; please wait.

=> installed “TEC GUI Integration  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”.
… Initializing component TEC GUI Integration  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support.
… TEC GUI Integration  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support initialized.

… installing “Tivoli Performance Analyzer  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”; please wait.

=> installed “Tivoli Performance Analyzer  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”.
… Initializing component Tivoli Performance Analyzer  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support.
… Tivoli Performance Analyzer  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support initialized.

… installing “Universal Agent  V06.23.05.00 for Tivoli Enterprise Portal Browser Client support”; please wait.

=> installed “Universal Agent  V06.23.05.00 for Tivoli Enterprise Portal Browser Client support”.
… Initializing component Universal Agent  V06.23.05.00 for Tivoli Enterprise Portal Browser Client support.
… Universal Agent  V06.23.05.00 for Tivoli Enterprise Portal Browser Client support initialized.

… installing “Warehouse Proxy  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”; please wait.

=> installed “Warehouse Proxy  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support”.
… Initializing component Warehouse Proxy  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support.
… Warehouse Proxy  V06.30.03.00 for Tivoli Enterprise Portal Browser Client support initialized.

Do you want to install additional products or product support packages [ 1=Yes, 2=No ; default is “2” ] ? 1

Product packages are available for this operating system and component support categories:

1) IBM Tivoli Monitoring components for this operating system
2) Tivoli Enterprise Portal Browser Client support
3) Tivoli Enterprise Portal Desktop Client support
4) Tivoli Enterprise Portal Server support
5) Tivoli Enterprise Monitoring Server support
6) Other operating systems

Type the number or type “q” to quit selection
[ number “1” or “IBM Tivoli Monitoring components for this operating system” is default ]:  3

You selected number “3” or “Tivoli Enterprise Portal Desktop Client support”

Is the selection correct [ 1=Yes, 2=No ; default is “1” ] ? 1

The following application supports are available for installation:

1) Agentless Monitoring for AIX Operating Systems  V06.30.03.00
2) Agentless Monitoring for HP-UX Operating Systems  V06.30.03.00
3) Agentless Monitoring for Linux Operating Systems  V06.30.03.00
4) Agentless Monitoring for Solaris Operating Systems  V06.30.03.00
5) Agentless Monitoring for Windows Operating Systems  V06.30.03.00
6) Monitoring Agent for Linux OS  V06.30.03.00
7) Monitoring Agent for UNIX Logs  V06.23.05.00
8) Monitoring Agent for UNIX OS  V06.30.03.00
9) Monitoring Agent for Windows OS  V06.30.03.00
10) Monitoring Agent for i5/OS  V06.30.03.00
11) Summarization and Pruning Agent  V06.30.03.00
12) TEC GUI Integration  V06.30.03.00
13) Tivoli Performance Analyzer  V06.30.03.00
14) Universal Agent  V06.23.05.00
15) Warehouse Proxy  V06.30.03.00
16) all of the above

Type the numbers that correspond to the products that you want to install. Type “b” to change operating system, or type “q” to quit selection.
If you enter more than one number, separate the numbers by a comma or a space.

Type your selections here:  16

The following products will be installed:

Agentless Monitoring for AIX Operating Systems  V06.30.03.00
Agentless Monitoring for HP-UX Operating Systems  V06.30.03.00
Agentless Monitoring for Linux Operating Systems  V06.30.03.00
Agentless Monitoring for Solaris Operating Systems  V06.30.03.00
Agentless Monitoring for Windows Operating Systems  V06.30.03.00
Monitoring Agent for Linux OS  V06.30.03.00
Monitoring Agent for UNIX Logs  V06.23.05.00
Monitoring Agent for UNIX OS  V06.30.03.00
Monitoring Agent for Windows OS  V06.30.03.00
Monitoring Agent for i5/OS  V06.30.03.00
Summarization and Pruning Agent  V06.30.03.00
TEC GUI Integration  V06.30.03.00
Tivoli Performance Analyzer  V06.30.03.00
Universal Agent  V06.23.05.00
Warehouse Proxy  V06.30.03.00

Are your selections correct [ 1=Yes, 2=No ; default is “1” ] ? 1

… installing “Agentless Monitoring for AIX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”; please wait.

=> installed “Agentless Monitoring for AIX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”.
… Initializing component Agentless Monitoring for AIX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support.
… Agentless Monitoring for AIX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support initialized.

… installing “Agentless Monitoring for HP-UX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”; please wait.

=> installed “Agentless Monitoring for HP-UX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”.
… Initializing component Agentless Monitoring for HP-UX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support.
… Agentless Monitoring for HP-UX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support initialized.

… installing “Agentless Monitoring for Linux Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”; please wait.

=> installed “Agentless Monitoring for Linux Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”.
… Initializing component Agentless Monitoring for Linux Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support.
… Agentless Monitoring for Linux Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support initialized.

… installing “Agentless Monitoring for Solaris Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”; please wait.

=> installed “Agentless Monitoring for Solaris Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”.
… Initializing component Agentless Monitoring for Solaris Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support.
… Agentless Monitoring for Solaris Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support initialized.

… installing “Agentless Monitoring for Windows Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”; please wait.

=> installed “Agentless Monitoring for Windows Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”.
… Initializing component Agentless Monitoring for Windows Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support.
… Agentless Monitoring for Windows Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support initialized.

… installing “Monitoring Agent for Linux OS  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”; please wait.

=> installed “Monitoring Agent for Linux OS  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”.
… Initializing component Monitoring Agent for Linux OS  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support.
… Monitoring Agent for Linux OS  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support initialized.

… installing “Monitoring Agent for UNIX Logs  V06.23.05.00 for Tivoli Enterprise Portal Desktop Client support”; please wait.

=> installed “Monitoring Agent for UNIX Logs  V06.23.05.00 for Tivoli Enterprise Portal Desktop Client support”.
… Initializing component Monitoring Agent for UNIX Logs  V06.23.05.00 for Tivoli Enterprise Portal Desktop Client support.
… Monitoring Agent for UNIX Logs  V06.23.05.00 for Tivoli Enterprise Portal Desktop Client support initialized.

… installing “Monitoring Agent for UNIX OS  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”; please wait.

=> installed “Monitoring Agent for UNIX OS  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”.
… Initializing component Monitoring Agent for UNIX OS  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support.
… Monitoring Agent for UNIX OS  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support initialized.

… installing “Monitoring Agent for Windows OS  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”; please wait.

=> installed “Monitoring Agent for Windows OS  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”.
… Initializing component Monitoring Agent for Windows OS  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support.
… Monitoring Agent for Windows OS  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support initialized.

… installing “Monitoring Agent for i5/OS  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”; please wait.

=> installed “Monitoring Agent for i5/OS  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”.
… Initializing component Monitoring Agent for i5/OS  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support.
… Monitoring Agent for i5/OS  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support initialized.

… installing “Summarization and Pruning Agent  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”; please wait.

=> installed “Summarization and Pruning Agent  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”.
… Initializing component Summarization and Pruning Agent  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support.
… Summarization and Pruning Agent  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support initialized.

… installing “TEC GUI Integration  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”; please wait.

=> installed “TEC GUI Integration  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”.
… Initializing component TEC GUI Integration  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support.
… TEC GUI Integration  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support initialized.

… installing “Tivoli Performance Analyzer  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”; please wait.

=> installed “Tivoli Performance Analyzer  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”.
… Initializing component Tivoli Performance Analyzer  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support.
… Tivoli Performance Analyzer  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support initialized.

… installing “Universal Agent  V06.23.05.00 for Tivoli Enterprise Portal Desktop Client support”; please wait.

=> installed “Universal Agent  V06.23.05.00 for Tivoli Enterprise Portal Desktop Client support”.
… Initializing component Universal Agent  V06.23.05.00 for Tivoli Enterprise Portal Desktop Client support.
… Universal Agent  V06.23.05.00 for Tivoli Enterprise Portal Desktop Client support initialized.

… installing “Warehouse Proxy  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”; please wait.

=> installed “Warehouse Proxy  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support”.
… Initializing component Warehouse Proxy  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support.
… Warehouse Proxy  V06.30.03.00 for Tivoli Enterprise Portal Desktop Client support initialized.

Do you want to install additional products or product support packages [ 1=Yes, 2=No ; default is “2” ] ? 1

Product packages are available for this operating system and component support categories:

1) IBM Tivoli Monitoring components for this operating system
2) Tivoli Enterprise Portal Browser Client support
3) Tivoli Enterprise Portal Desktop Client support
4) Tivoli Enterprise Portal Server support
5) Tivoli Enterprise Monitoring Server support
6) Other operating systems

Type the number or type “q” to quit selection
[ number “1” or “IBM Tivoli Monitoring components for this operating system” is default ]:  4

You selected number “4” or “Tivoli Enterprise Portal Server support”

Is the selection correct [ 1=Yes, 2=No ; default is “1” ] ? 1

The following application supports are available for installation:

1) Agentless Monitoring for AIX Operating Systems  V06.30.03.00
2) Agentless Monitoring for HP-UX Operating Systems  V06.30.03.00
3) Agentless Monitoring for Linux Operating Systems  V06.30.03.00
4) Agentless Monitoring for Solaris Operating Systems  V06.30.03.00
5) Agentless Monitoring for Windows Operating Systems  V06.30.03.00
6) Monitoring Agent for IBM Tivoli Monitoring 5.x Endpoint  V06.23.05.00
7) Monitoring Agent for Linux OS  V06.30.03.00
8) Monitoring Agent for UNIX Logs  V06.23.05.00
9) Monitoring Agent for UNIX OS  V06.30.03.00
10) Monitoring Agent for Windows OS  V06.30.03.00
11) Monitoring Agent for i5/OS  V06.30.03.00
12) Summarization and Pruning Agent  V06.30.03.00
13) TEC GUI Integration  V06.30.03.00
14) Tivoli Performance Analyzer  V06.30.03.00
15) Universal Agent  V06.23.05.00
16) Warehouse Proxy  V06.30.03.00
17) all of the above

Type the numbers that correspond to the products that you want to install. Type “b” to change operating system, or type “q” to quit selection.
If you enter more than one number, separate the numbers by a comma or a space.

Type your selections here:  17

The following products will be installed:

Agentless Monitoring for AIX Operating Systems  V06.30.03.00
Agentless Monitoring for HP-UX Operating Systems  V06.30.03.00
Agentless Monitoring for Linux Operating Systems  V06.30.03.00
Agentless Monitoring for Solaris Operating Systems  V06.30.03.00
Agentless Monitoring for Windows Operating Systems  V06.30.03.00
Monitoring Agent for IBM Tivoli Monitoring 5.x Endpoint  V06.23.05.00
Monitoring Agent for Linux OS  V06.30.03.00
Monitoring Agent for UNIX Logs  V06.23.05.00
Monitoring Agent for UNIX OS  V06.30.03.00
Monitoring Agent for Windows OS  V06.30.03.00
Monitoring Agent for i5/OS  V06.30.03.00
Summarization and Pruning Agent  V06.30.03.00
TEC GUI Integration  V06.30.03.00
Tivoli Performance Analyzer  V06.30.03.00
Universal Agent  V06.23.05.00
Warehouse Proxy  V06.30.03.00

Are your selections correct [ 1=Yes, 2=No ; default is “1” ] ? 1

… installing “Agentless Monitoring for AIX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support”; please wait.

=> installed “Agentless Monitoring for AIX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support”.
… Initializing component Agentless Monitoring for AIX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support.
… Agentless Monitoring for AIX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support initialized.

… installing “Agentless Monitoring for HP-UX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support”; please wait.

=> installed “Agentless Monitoring for HP-UX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support”.
… Initializing component Agentless Monitoring for HP-UX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support.
… Agentless Monitoring for HP-UX Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support initialized.

… installing “Agentless Monitoring for Linux Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support”; please wait.

=> installed “Agentless Monitoring for Linux Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support”.
… Initializing component Agentless Monitoring for Linux Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support.
… Agentless Monitoring for Linux Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support initialized.

… installing “Agentless Monitoring for Solaris Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support”; please wait.

=> installed “Agentless Monitoring for Solaris Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support”.
… Initializing component Agentless Monitoring for Solaris Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support.
… Agentless Monitoring for Solaris Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support initialized.

… installing “Agentless Monitoring for Windows Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support”; please wait.

=> installed “Agentless Monitoring for Windows Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support”.
… Initializing component Agentless Monitoring for Windows Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support.
… Agentless Monitoring for Windows Operating Systems  V06.30.03.00 for Tivoli Enterprise Portal Server support initialized.

… installing “Monitoring Agent for IBM Tivoli Monitoring 5.x Endpoint  V06.23.05.00 for Tivoli Enterprise Portal Server support”; please wait.

=> installed “Monitoring Agent for IBM Tivoli Monitoring 5.x Endpoint  V06.23.05.00 for Tivoli Enterprise Portal Server support”.
… Initializing component Monitoring Agent for IBM Tivoli Monitoring 5.x Endpoint  V06.23.05.00 for Tivoli Enterprise Portal Server support.
… Monitoring Agent for IBM Tivoli Monitoring 5.x Endpoint  V06.23.05.00 for Tivoli Enterprise Portal Server support initialized.

… installing “Monitoring Agent for Linux OS  V06.30.03.00 for Tivoli Enterprise Portal Server support”; please wait.

=> installed “Monitoring Agent for Linux OS  V06.30.03.00 for Tivoli Enterprise Portal Server support”.
… Initializing component Monitoring Agent for Linux OS  V06.30.03.00 for Tivoli Enterprise Portal Server support.
… Monitoring Agent for Linux OS  V06.30.03.00 for Tivoli Enterprise Portal Server support initialized.

… installing “Monitoring Agent for UNIX Logs  V06.23.05.00 for Tivoli Enterprise Portal Server support”; please wait.

=> installed “Monitoring Agent for UNIX Logs  V06.23.05.00 for Tivoli Enterprise Portal Server support”.
… Initializing component Monitoring Agent for UNIX Logs  V06.23.05.00 for Tivoli Enterprise Portal Server support.
… Monitoring Agent for UNIX Logs  V06.23.05.00 for Tivoli Enterprise Portal Server support initialized.

… installing “Monitoring Agent for UNIX OS  V06.30.03.00 for Tivoli Enterprise Portal Server support”; please wait.

=> installed “Monitoring Agent for UNIX OS  V06.30.03.00 for Tivoli Enterprise Portal Server support”.
… Initializing component Monitoring Agent for UNIX OS  V06.30.03.00 for Tivoli Enterprise Portal Server support.
… Monitoring Agent for UNIX OS  V06.30.03.00 for Tivoli Enterprise Portal Server support initialized.

… installing “Monitoring Agent for Windows OS  V06.30.03.00 for Tivoli Enterprise Portal Server support”; please wait.

=> installed “Monitoring Agent for Windows OS  V06.30.03.00 for Tivoli Enterprise Portal Server support”.
… Initializing component Monitoring Agent for Windows OS  V06.30.03.00 for Tivoli Enterprise Portal Server support.
… Monitoring Agent for Windows OS  V06.30.03.00 for Tivoli Enterprise Portal Server support initialized.

… installing “Monitoring Agent for i5/OS  V06.30.03.00 for Tivoli Enterprise Portal Server support”; please wait.

=> installed “Monitoring Agent for i5/OS  V06.30.03.00 for Tivoli Enterprise Portal Server support”.
… Initializing component Monitoring Agent for i5/OS  V06.30.03.00 for Tivoli Enterprise Portal Server support.
… Monitoring Agent for i5/OS  V06.30.03.00 for Tivoli Enterprise Portal Server support initialized.

… installing “Summarization and Pruning Agent  V06.30.03.00 for Tivoli Enterprise Portal Server support”; please wait.

=> installed “Summarization and Pruning Agent  V06.30.03.00 for Tivoli Enterprise Portal Server support”.
… Initializing component Summarization and Pruning Agent  V06.30.03.00 for Tivoli Enterprise Portal Server support.
… Summarization and Pruning Agent  V06.30.03.00 for Tivoli Enterprise Portal Server support initialized.

… installing “TEC GUI Integration  V06.30.03.00 for Tivoli Enterprise Portal Server support”; please wait.

=> installed “TEC GUI Integration  V06.30.03.00 for Tivoli Enterprise Portal Server support”.
… Initializing component TEC GUI Integration  V06.30.03.00 for Tivoli Enterprise Portal Server support.
… TEC GUI Integration  V06.30.03.00 for Tivoli Enterprise Portal Server support initialized.

… installing “Tivoli Performance Analyzer  V06.30.03.00 for Tivoli Enterprise Portal Server support”; please wait.

=> installed “Tivoli Performance Analyzer  V06.30.03.00 for Tivoli Enterprise Portal Server support”.
… Initializing component Tivoli Performance Analyzer  V06.30.03.00 for Tivoli Enterprise Portal Server support.
… Tivoli Performance Analyzer  V06.30.03.00 for Tivoli Enterprise Portal Server support initialized.

… installing “Universal Agent  V06.23.05.00 for Tivoli Enterprise Portal Server support”; please wait.

=> installed “Universal Agent  V06.23.05.00 for Tivoli Enterprise Portal Server support”.
… Initializing component Universal Agent  V06.23.05.00 for Tivoli Enterprise Portal Server support.
… Universal Agent  V06.23.05.00 for Tivoli Enterprise Portal Server support initialized.

… installing “Warehouse Proxy  V06.30.03.00 for Tivoli Enterprise Portal Server support”; please wait.

=> installed “Warehouse Proxy  V06.30.03.00 for Tivoli Enterprise Portal Server support”.
… Initializing component Warehouse Proxy  V06.30.03.00 for Tivoli Enterprise Portal Server support.
… Warehouse Proxy  V06.30.03.00 for Tivoli Enterprise Portal Server support initialized.

Do you want to install additional products or product support packages [ 1=Yes, 2=No ; default is “2” ] ? 2
… postprocessing; please wait.
… running /app/IBM/ITM/lx8266/cq/bin/helpmerg.sh
… finished postprocessing.
Installation step complete.
Automatic start at system initialization has been configured.
Automatic stop at system shutdown has been configured.

The install.sh command creates most of directories and files with world write permissions. IBM Tivoli Monitoring provides the secureMain utility to helps you keep the monitoring environment secured. You can secure this installation now or manually execute the secureMain utility later. For more information see Appendix G. Securing your IBM Tivoli Monitoring installation on Linux or UNIX in the IBM Tivoli Monitoring Installation and Setup Guide.

Do you want to secure this IBM Tivoli Monitoring installation [ 1-yes, 2-no; “2” is default ]? 2
Starting TEMS…
It can take up to ten minutes.
TEMS started…

 

Installing & Configuring the IBM Tivoli Monitoring Agent for Netcool/Omnibus 8.1

The IBM Tivoli Monitoring Agent for Netcool/Omnibus 8.1  is located in the IBM Tivoli Monitoring Agent for Netcool/Omnibus 8.1 eAssembly ( CRS7KML ) bundle. We used SLES 11 SP3 as our installation platform.

Installing the IBM Tivoli Monitoring Agent for Netcool/Omnibus 8.1 agent support on the ITM server(s).

First install the product support for TEPS, TEMS. We have a one box test system running ITM 6.3.0.4 so we will only have to perform the product support installation in this one server. We will install the following packages:

Tivoli Enterprise Portal Browser Client support
Tivoli Enterprise Portal Desktop Client support
Tivoli Enterprise Portal Server support
Tivoli Enterprise Monitoring Server support

Start the installation by executing install.sh from the installation media.

HUITM001-P1:/Downloads/TIVOLI-IMAGES/OMNIBUS8-PACK/agent # ./install.sh
INSTALL

Enter the name of the IBM Tivoli Monitoring directory
[ default = /opt/IBM/ITM ]: /app/IBM/ITM

ITM home directory “/app/IBM/ITM” already exists.
OK to use it [ 1-yes, 2-no; “1” is default ]?  1

The following processes are currently running:

Product = Tivoli Enterprise Monitoring Server  PID = 4206
Product = Tivoli Enterprise Monitoring Automation Server  PID = 4532
Product = IBM Eclipse Help Server  PID = 4836
Product = Tivoli Enterprise Portal Server  PID = 4928
Product = Warehouse Proxy  PID = 5371
Product = Monitoring Agent for Linux OS  PID = 5857
Product = Summarization and Pruning Agent  PID = 16319
install.sh warning: Existing products found to be running will be restarted during installation., continuing …

Continue with this installation [ 1-yes, 2-no; “1” is default ]?  1
Stopping TEMS…
It can take up to ten minutes.
TEMS stopped…
Processing. Please wait…
Stopping Tivoli Enterprise Monitoring Automation Server …
Product Tivoli Enterprise Monitoring Automation Server was stopped gracefully.
Agent stopped…
Processing. Please wait…
Stopping IBM Eclipse Help Server …
Product IBM Eclipse Help Server was stopped gracefully.
Agent stopped…
Processing. Please wait…
Stopping Tivoli Enterprise Portal Server …
Product Tivoli Enterprise Portal Server was stopped gracefully.
KCIIN0196E Agent is not running…
Processing. Please wait…
Stopping Warehouse Proxy …
Product Warehouse Proxy was stopped gracefully.
Agent stopped…
Processing. Please wait…
Stopping Watchdog process…
Watchdog process was stopped.
Stopping Monitoring Agent for Linux OS …
Product Monitoring Agent for Linux OS was stopped gracefully.
Agent stopped…
Processing. Please wait…
Stopping Summarization and Pruning Agent …
Product Summarization and Pruning Agent was stopped gracefully.
Agent stopped…
/app/IBM/ITM

Select one of the following:

1) Install products to the local host.
2) Install products to depot for remote deployment (requires TEMS).
3) Install TEMS support for remote seeding
4) Exit install.

Please enter a valid number:  1

Initializing …
International Program License Agreement

Part 1 – General Terms

BY DOWNLOADING, INSTALLING, COPYING, ACCESSING, OR USING
THE PROGRAM YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF
YOU ARE ACCEPTING THESE TERMS ON BEHALF OF ANOTHER PERSON
OR A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT AND
WARRANT THAT YOU HAVE FULL AUTHORITY TO BIND THAT PERSON,
COMPANY, OR LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT
AGREE TO THESE TERMS,

– DO NOT DOWNLOAD, INSTALL, COPY, ACCESS, OR USE THE
PROGRAM; AND

Press Enter to continue viewing the license agreement, or
enter “1” to accept the agreement, “2” to decline it, “3”
to print it, “4” to read non-IBM terms, or “99” to go back
to the previous screen.
1

Product packages are available in /Downloads/TIVOLI-IMAGES/OMNIBUS8-PACK/agent/unix

The following products are currently installed in “/app/IBM/ITM”:

Agentless Monitoring for AIX Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Agentless Monitoring for AIX Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Agentless Monitoring for AIX Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Server support
Agentless Monitoring for HP-UX Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Agentless Monitoring for HP-UX Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Agentless Monitoring for HP-UX Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Server support
Agentless Monitoring for Linux Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Agentless Monitoring for Linux Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Agentless Monitoring for Linux Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Server support
Agentless Monitoring for Solaris Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Agentless Monitoring for Solaris Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Agentless Monitoring for Solaris Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Server support
Agentless Monitoring for Windows Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Agentless Monitoring for Windows Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Agentless Monitoring for Windows Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Server support
IBM Eclipse Help Server V06.30.04.00 @ Linux Intel R2.6, R3.0 (32 bit)/Intel R2.6 GCC 2.9.5 (64 bit)/Intel R2.6, R3.0 (64 bit)/x86_64 R2.6, R3.0 (32 bit)/x86_64 R2.6, R3.0 (64 bit)
IBM GSKit Security Interface V08.00.50.20 @ Linux x86_64 R2.6, R3.0 (64 bit)
IBM HTTP Server V08.00.06.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
IBM Installation Manager V01.06.03.01 @ Linux x86_64 R2.6, R3.0 (64 bit)
IBM Tivoli Enterprise Portal Server Extensions V08.00.06.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Monitoring Agent for IBM Tivoli Monitoring 5.x Endpoint V06.23.05.00 @ Tivoli Enterprise Portal Server support
Monitoring Agent for Linux OS V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Monitoring Agent for Linux OS V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Monitoring Agent for Linux OS V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Monitoring Agent for Linux OS V06.30.04.00 @ Tivoli Enterprise Portal Server support
Monitoring Agent for TADDM Serviceability and Manageability V07.22.00.00 @ Tivoli Enterprise Portal Browser Client support
Monitoring Agent for TADDM Serviceability and Manageability V07.22.00.00 @ Tivoli Enterprise Portal Desktop Client support
Monitoring Agent for TADDM Serviceability and Manageability V07.22.00.00 @ Tivoli Enterprise Portal Server support
Monitoring Agent for UNIX Logs V06.23.05.00 @ Tivoli Enterprise Portal Browser Client support
Monitoring Agent for UNIX Logs V06.23.05.00 @ Tivoli Enterprise Portal Desktop Client support
Monitoring Agent for UNIX Logs V06.23.05.00 @ Tivoli Enterprise Portal Server support
Monitoring Agent for UNIX OS V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Monitoring Agent for UNIX OS V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Monitoring Agent for UNIX OS V06.30.04.00 @ Tivoli Enterprise Portal Server support
Monitoring Agent for Windows OS V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Monitoring Agent for Windows OS V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Monitoring Agent for Windows OS V06.30.04.00 @ Tivoli Enterprise Portal Server support
Monitoring Agent for i5/OS V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Monitoring Agent for i5/OS V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Monitoring Agent for i5/OS V06.30.04.00 @ Tivoli Enterprise Portal Server support
Summarization and Pruning Agent V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Summarization and Pruning Agent V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Summarization and Pruning Agent V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Summarization and Pruning Agent V06.30.04.00 @ Tivoli Enterprise Portal Server support
TEC GUI Integration V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
TEC GUI Integration V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
TEC GUI Integration V06.30.04.00 @ Tivoli Enterprise Portal Server support
Tivoli Enterprise Monitoring Automation Server V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Monitoring SOAP Server V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Monitoring Server V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Portal Browser Client V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Portal Desktop Client V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Portal Server V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Services User Interface Extensions V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Services User Interface V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Performance Analyzer V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Tivoli Performance Analyzer V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Tivoli Performance Analyzer V06.30.04.00 @ Tivoli Enterprise Portal Server support
Universal Agent V06.23.05.00 @ Tivoli Enterprise Portal Browser Client support
Universal Agent V06.23.05.00 @ Tivoli Enterprise Portal Desktop Client support
Universal Agent V06.23.05.00 @ Tivoli Enterprise Portal Server support
Warehouse Proxy V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Warehouse Proxy V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Warehouse Proxy V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Warehouse Proxy V06.30.04.00 @ Tivoli Enterprise Portal Server support

All agents require that application support files that contain agent-specific information be installed on the Tivoli Enterprise Monitoring Server that the agents will connect to, Tivoli Enterprise Portal Server and Tivoli Enterprise Portal desktop and browser client. Install application support before starting to install any Tivoli Enterprise Monitoring Agents.

Product packages are available for this operating system and component support categories:

1) IBM Tivoli Monitoring components for this operating system
 2) Tivoli Enterprise Portal Browser Client support
 3) Tivoli Enterprise Portal Desktop Client support
 4) Tivoli Enterprise Portal Server support
 5) Tivoli Enterprise Monitoring Server support
 6) Other operating systems

Type the number or type “q” to quit selection
[ number “1” or “IBM Tivoli Monitoring components for this operating system” is default ]:  2

You selected number “2” or “Tivoli Enterprise Portal Browser Client support

Is the selection correct [ 1=Yes, 2=No ; default is “1” ] ? 1

The following application supports are available for installation:

1) Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00
2) all of the above

Type the numbers that correspond to the products that you want to install. Type “b” to change operating system, or type “q” to quit selection.
If you enter more than one number, separate the numbers by a comma or a space.

Type your selections here:  1

The following products will be installed:

Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00

Are your selections correct [ 1=Yes, 2=No ; default is “1” ] ? 1

… installing “Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Tivoli Enterprise Portal Browser Client support”; please wait.

=> installed “Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Tivoli Enterprise Portal Browser Client support”.
… Initializing component Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Tivoli Enterprise Portal Browser Client support.
… Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Tivoli Enterprise Portal Browser Client support initialized.

Do you want to install additional products or product support packages [ 1=Yes, 2=No ; default is “2” ] ? 1

Product packages are available for this operating system and component support categories:

 1) IBM Tivoli Monitoring components for this operating system
 2) Tivoli Enterprise Portal Browser Client support
 3) Tivoli Enterprise Portal Desktop Client support
 4) Tivoli Enterprise Portal Server support
 5) Tivoli Enterprise Monitoring Server support
 6) Other operating systems

Type the number or type “q” to quit selection
[ number “1” or “IBM Tivoli Monitoring components for this operating system” is default ]:  3

You selected number “3” or “Tivoli Enterprise Portal Desktop Client support

Is the selection correct [ 1=Yes, 2=No ; default is “1” ] ? 1

The following application supports are available for installation:

1) Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00
2) all of the above

Type the numbers that correspond to the products that you want to install. Type “b” to change operating system, or type “q” to quit selection.
If you enter more than one number, separate the numbers by a comma or a space.

Type your selections here:  1

The following products will be installed:

Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00

Are your selections correct [ 1=Yes, 2=No ; default is “1” ] ? 1

… installing “Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Tivoli Enterprise Portal Desktop Client support”; please wait.

=> installed “Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Tivoli Enterprise Portal Desktop Client support”.
… Initializing component Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Tivoli Enterprise Portal Desktop Client support.
… Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Tivoli Enterprise Portal Desktop Client support initialized.

Do you want to install additional products or product support packages [ 1=Yes, 2=No ; default is “2” ] ? 1

Product packages are available for this operating system and component support categories:

 1) IBM Tivoli Monitoring components for this operating system
 2) Tivoli Enterprise Portal Browser Client support
 3) Tivoli Enterprise Portal Desktop Client support
 4) Tivoli Enterprise Portal Server support
 5) Tivoli Enterprise Monitoring Server support
 6) Other operating systems

Type the number or type “q” to quit selection
[ number “1” or “IBM Tivoli Monitoring components for this operating system” is default ]:  4

You selected number “4” or “Tivoli Enterprise Portal Server support

Is the selection correct [ 1=Yes, 2=No ; default is “1” ] ? 1

The following application supports are available for installation:

1) Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00
2) all of the above

Type the numbers that correspond to the products that you want to install. Type “b” to change operating system, or type “q” to quit selection.
If you enter more than one number, separate the numbers by a comma or a space.

Type your selections here:  1

The following products will be installed:

Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00

Are your selections correct [ 1=Yes, 2=No ; default is “1” ] ? 1

… installing “Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Tivoli Enterprise Portal Server support”; please wait.

=> installed “Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Tivoli Enterprise Portal Server support”.
… Initializing component Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Tivoli Enterprise Portal Server support.
… Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Tivoli Enterprise Portal Server support initialized.

Do you want to install additional products or product support packages [ 1=Yes, 2=No ; default is “2” ] ? 1

Product packages are available for this operating system and component support categories:

1) IBM Tivoli Monitoring components for this operating system
 2) Tivoli Enterprise Portal Browser Client support
 3) Tivoli Enterprise Portal Desktop Client support
 4) Tivoli Enterprise Portal Server support
 5) Tivoli Enterprise Monitoring Server support
 6) Other operating systems

Type the number or type “q” to quit selection
[ number “1” or “IBM Tivoli Monitoring components for this operating system” is default ]:  5

You selected number “5” or “Tivoli Enterprise Monitoring Server support

Is the selection correct [ 1=Yes, 2=No ; default is “1” ] ? 1

The following application supports are available for installation:

1) Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00
2) all of the above

Type the numbers that correspond to the products that you want to install. Type “b” to change operating system, or type “q” to quit selection.
If you enter more than one number, separate the numbers by a comma or a space.

Type your selections here:  1

The following products will be installed:

Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00

Are your selections correct [ 1=Yes, 2=No ; default is “1” ] ? 1

… installing “Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Tivoli Enterprise Monitoring Server support”; please wait.

=> installed “Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Tivoli Enterprise Monitoring Server support”.
… Initializing component Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Tivoli Enterprise Monitoring Server support.
… Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Tivoli Enterprise Monitoring Server support initialized.

Do you want to install additional products or product support packages [ 1=Yes, 2=No ; default is “2” ] ?
… postprocessing; please wait.
… running /app/IBM/ITM/lx8266/cq/bin/helpmerg.sh
… finished postprocessing.
Installation step complete.

Following Tivoli Enterprise Monitoring Server product support were installed:
*) Monitoring Agent for Tivoli Netcool/OMNIbus

Note: This operation causes the monitoring server to restart.
Do you want to seed product support on the Tivoli Enterprise Monitoring Server? [ 1=Yes, 2=No ; default is “1” ] ?
Starting TEMS…
TEMS started…

The following new Tivoli Enterprise Monitoring Server product support packages will be seeded:
*) Monitoring Agent for Tivoli Netcool/OMNIbus

Choose one of the following options to add or update the situation distribution definition to include the default managed system groups:

1) ALL – This option adds the default managed system groups to all the applicable situations. Note that not all situations have the default managed group setting. For some, you might need to manually define the distribution in the Tivoli Enterprise Portal due to the specific content of the agent support package.
2) NONE – The default managed system group is not added to any situation.

Type your selections here [ number “1” or “ALL” is default ]:
1

Seeding support for Monitoring Agent for Tivoli Netcool/OMNIbus [1 of 1]
Product support seeding completed…
Stopping TEMS…
TEMS stopped…
All supports successfully seeded.

As a reminder, you should install product support on each of your TEM servers for any agents you have just installed.
This is done via the “/app/IBM/ITM/bin/itmcmd support” command on your TEM servers.

You may now configure any locally installed IBM Tivoli Monitoring product via the “/app/IBM/ITM/bin/itmcmd config” command.

insserv: warning: current start runlevel(s) (3 5) of script `vboxadd-x11′ overwrites defaults (empty).
insserv: Service network is missed in the runlevels 4 to use service ctrmc
insserv: Service syslog is missed in the runlevels 4 to use service ctrmc

Starting TEMS…
It can take up to ten minutes.
TEMS started…
Processing. Please wait…
Starting Tivoli Enterprise Monitoring Automation Server …
Tivoli Enterprise Monitoring Automation Server started
Processing. Please wait…
Starting IBM Eclipse Help Server …
IBM Eclipse Help Server started
Processing. Please wait…
Starting Tivoli Enterprise Portal Server …
Eclipse Help Server is required by Tivoli Enterprise Portal Server (TEPS) and will be started…
Eclipse Help Server is already started.
Tivoli Enterprise Portal Server started
Processing. Please wait…
Starting Warehouse Proxy …
Warehouse Proxy started
Processing. Please wait…
Starting Summarization and Pruning Agent …
Summarization and Pruning Agent started
Processing. Please wait…
Starting Monitoring Agent for Linux OS …
Monitoring Agent for Linux OS started

Reconfigure teps to complete the product support installation. Start the Manage Tivoli Enterprise Monitoring services console on the ITM server using the $CANDLEDIR/bin/itmcmd manage & command then right click Tivoli Enterprise Portal Server and select Configure from the drop down menu.

reconfigure-tepsTEPS will have to be stopped during configuration.reconfigure-teps-stopClick OK at the next popup window.

reconfigure-teps-common-event-console-configurationClick Save at the next window. Basically you do not want to change any parameters here, only want to reconfiguration to run and detect and include the new product support jar files. This procedure could take quite a while, so be patient.

reconfigure-teps-saveOnce the configuration is done, click Yes to start the TEPS server.

reconfigure-teps-start

Installing the IBM Tivoli Monitoring Agent for Netcool/Omnibus 8.1.

Start the monitoring agent installation on your omnibus server using install.sh

HUOMNIBUS001-P1:/Downloads/TIVOLI-IMAGES/OMNIBUS8-PACK/agent # ./install.sh
INSTALL

Enter the name of the IBM Tivoli Monitoring directory
[ default = /opt/IBM/ITM ]: /app/IBM/ITM

ITM home directory “/app/IBM/ITM” already exists.
OK to use it [ 1-yes, 2-no; “1” is default ]?

The following processes are currently running:

Product = Monitoring Agent for Linux OS  PID = 3773
install.sh warning: Existing products found to be running will be restarted during installation., continuing …

Continue with this installation [ 1-yes, 2-no; “1” is default ]?  1
Processing. Please wait…
Stopping Watchdog process…
Watchdog process was stopped.
Stopping Monitoring Agent for Linux OS …
Product Monitoring Agent for Linux OS was stopped gracefully.
Agent stopped…
/app/IBM/ITM

Select one of the following:

1) Install products to the local host.
2) Install products to depot for remote deployment (requires TEMS).
3) Install TEMS support for remote seeding
4) Exit install.

Please enter a valid number:  1

Initializing …
International Program License Agreement

Part 1 – General Terms

BY DOWNLOADING, INSTALLING, COPYING, ACCESSING, OR USING
THE PROGRAM YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF
YOU ARE ACCEPTING THESE TERMS ON BEHALF OF ANOTHER PERSON
OR A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT AND
WARRANT THAT YOU HAVE FULL AUTHORITY TO BIND THAT PERSON,
COMPANY, OR LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT
AGREE TO THESE TERMS,

– DO NOT DOWNLOAD, INSTALL, COPY, ACCESS, OR USE THE
PROGRAM; AND

Press Enter to continue viewing the license agreement, or
enter “1” to accept the agreement, “2” to decline it, “3”
to print it, “4” to read non-IBM terms, or “99” to go back
to the previous screen.
1

Product packages are available in /Downloads/TIVOLI-IMAGES/OMNIBUS8-PACK/agent/unix

The following products are currently installed in “/app/IBM/ITM”:

IBM GSKit Security Interface V08.00.50.20 @ Linux x86_64 R2.6, R3.0 (64 bit)
Monitoring Agent for Linux OS V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Services User Interface V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)

All agents require that application support files that contain agent-specific information be installed on the Tivoli Enterprise Monitoring Server that the agents will connect to, Tivoli Enterprise Portal Server and Tivoli Enterprise Portal desktop and browser client. Install application support before starting to install any Tivoli Enterprise Monitoring Agents.

Product packages are available for this operating system and component support categories:

 1) IBM Tivoli Monitoring components for this operating system
 2) Tivoli Enterprise Portal Browser Client support
 3) Tivoli Enterprise Portal Desktop Client support
 4) Tivoli Enterprise Portal Server support
 5) Tivoli Enterprise Monitoring Server support
 6) Other operating systems

Type the number or type “q” to quit selection
[ number “1” or “IBM Tivoli Monitoring components for this operating system” is default ]:  1

You selected number “1” or “IBM Tivoli Monitoring components for this operating system”

Is the selection correct [ 1=Yes, 2=No ; default is “1” ] ? 1

The following products are available for installation:

1) Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00
2) all of the above

Type the numbers that correspond to the products that you want to install. Type “b” to change operating system, or type “q” to quit selection.
If you enter more than one number, separate the numbers by a comma or a space.

Type your selections here:  1

The following products will be installed:

  Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00

Are your selections correct [ 1=Yes, 2=No ; default is “1” ] ? 1

Do you want to check prerequisites for the above components? [ 1=Yes, 2=No ; default is “1” ] ? 1
Running Prerequisite Scanner.
This may take a few minutes depending on the number of components being checked and the machine’s performance.
Prerequisite Scanner results for the selected components:
NOT AVAILABLE    Monitoring Agent for Tivoli Netcool/OMNIbus        /app/IBM/ITM/logs/prereqscan/20150126-113643/COMMON/result.txt
NOT AVAILABLE    Tivoli Enterprise-supplied JRE        /app/IBM/ITM/logs/prereqscan/20150126-113643/COMMON/result.txt
NOT AVAILABLE    IBM Tivoli Monitoring Shared Libraries        /app/IBM/ITM/logs/prereqscan/20150126-113643/COMMON/result.txt
NOT AVAILABLE    IBM GSKit Security Interface        /app/IBM/ITM/logs/prereqscan/20150126-113643/COMMON/result.txt

PASS    Prerequisite Scanner Overall Result        /app/IBM/ITM/logs/prereqscan/20150126-113643/COMMON/result.txt

Do you want to continue with the installation [ 1=Yes, 2=No ; default is “1” ] ? 1

… installing “Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Linux x86_64 R2.6, R3.0 (64 bit)”; please wait.

=> installed “Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Linux x86_64 R2.6, R3.0 (64 bit)”.
… Initializing component Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Linux x86_64 R2.6, R3.0 (64 bit).
… Monitoring Agent for Tivoli Netcool/OMNIbus  V07.40.00.00 for Linux x86_64 R2.6, R3.0 (64 bit) initialized.

Do you want to install additional products or product support packages [ 1=Yes, 2=No ; default is “2” ] ?
… postprocessing; please wait.
… finished postprocessing.
Installation step complete.

As a reminder, you should install product support on each of your TEM servers for any agents you have just installed.
This is done via the “/app/IBM/ITM/bin/itmcmd support” command on your TEM servers.

You may now configure any locally installed IBM Tivoli Monitoring product via the “/app/IBM/ITM/bin/itmcmd config” command.

insserv: warning: current start runlevel(s) (3 5) of script `vboxadd-x11′ overwrites defaults (empty).
insserv: Service network is missed in the runlevels 4 to use service ctrmc
insserv: Service syslog is missed in the runlevels 4 to use service ctrmc

Processing. Please wait…
Starting Monitoring Agent for Linux OS ..

To complete the agent installation the itm_os.sql file will have to be run by omnibus to apply the necessary modifications on the Omnibus database. In our case this file was located in:

/app/IBM/ITM/lx8266/no/bin

So we executed the following command:

HUOMNIBUS001-P1:/app/IBM/ITM/lx8266/no/bin # /app/IBM/tivoli/netcool/omnibus/bin/nco_sql -user root -S NCOMS -P ****** < /app/IBM/ITM/lx8266/no/bin/itm_os.sql
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)

Configuring the IBM Tivoli Monitoring Agent for Netcool/Omnibus 8.1.

Start the Manage Tivoli Enterprise Monitoring services console on the Omnibus server using the $CANDLEDIR/bin/itmcmd manage & command then right click on Tivoli Monitoring Agent for Netcool/Omnibus and select Configure from the drop down menu.

omnibus-itm-agent-configureSpecify the log directory of the installed Netcool Omnibus 8.1 Server.

omnibus-itm-agent-configure-log-directoryThen specify the name of the running objectserver. We used the default objectserver name which is NCOMS. Click OK to continute to the second configuration step.

omnibus-itm-agent-configure-objectserverSpecify the name of the TEMS or RTEMS where you want to get your agent connected to, then click save.

omnibus-itm-agent-CONNECTION

Right click on the monitoring agent, then select Start Service to start the monitoring agent.

omnibus-itm-agent-startAfter a few seconds the agent should be popping up on your TEPS console like this:

teps-omnibus-agent

 

Installing & Configuring the TADDM 7.3 ITM Agent

The Monitoring Agent for TADDM Serviceability and Manageability 7.2.2  is located on the 3rd package of the TADDM installation bundle. Which is TADDM_7.3.0_3_OF_4_LNX_X86_ML.zip at the time of writing.

Before we Install the Monitoring Agent for TADDM Serviceability and Manageability  we need to make sure that the product support is installed on TEPS and TEMS. As we have both running on the same server in our test environment, we only have to complete the procedure once. As usual we use SLES 11 SP3 as the installation platform. The installation is started by executing install.sh from the taddm agent image directory.

Install the Monitoring Agent for TADDM Serviceability and Manageability

HUITM001-P1:/Downloads/TIVOLI-IMAGES/TADDM73PACK/itm-selfmon-support/UNIX # ./install.sh
INSTALL

Enter the name of the IBM Tivoli Monitoring directory
[ default = /opt/IBM/ITM ]: /app/IBM/ITM

ITM home directory “/app/IBM/ITM” already exists.
OK to use it [ 1-yes, 2-no; “1” is default ]?

The following processes are currently running:

Product = Monitoring Agent for Linux OS  PID = 1348
Product = IBM Eclipse Help Server  PID = 23946
Product = Tivoli Enterprise Monitoring Automation Server  PID = 10236
Product = Tivoli Enterprise Portal Server  PID = 26087
Product = Tivoli Enterprise Monitoring Server  PID = 16462
install.sh warning: Existing products found to be running will be restarted during installation., continuing …

Continue with this installation [ 1-yes, 2-no; “1” is default ]?  1
Processing. Please wait…
Stopping Tivoli Enterprise Portal Server …
Product Tivoli Enterprise Portal Server was stopped gracefully.
Product IBM Eclipse Help Server was stopped gracefully.
Agent stopped…
Processing. Please wait…
Stopping IBM Eclipse Help Server …
KCIIN0196E Agent is not running…
Processing. Please wait…
Stopping Watchdog process…
Watchdog process was stopped.
Stopping Monitoring Agent for Linux OS …
Product Monitoring Agent for Linux OS was stopped gracefully.
Agent stopped…
Processing. Please wait…
Stopping Tivoli Enterprise Monitoring Automation Server …
Product Tivoli Enterprise Monitoring Automation Server was stopped gracefully.
Agent stopped…
Stopping TEMS…
It can take up to ten minutes.
TEMS stopped…
/app/IBM/ITM

Select one of the following:

1) Install products to the local host.
2) Install products to depot for remote deployment (requires TEMS).
3) Install TEMS support for remote seeding
4) Exit install.

Please enter a valid number:  1

Initializing …
International Program License Agreement

Part 1 – General Terms

BY DOWNLOADING, INSTALLING, COPYING, ACCESSING, CLICKING ON
AN “ACCEPT” BUTTON, OR OTHERWISE USING THE PROGRAM,
LICENSEE AGREES TO THE TERMS OF THIS AGREEMENT. IF YOU ARE
ACCEPTING THESE TERMS ON BEHALF OF LICENSEE, YOU REPRESENT
AND WARRANT THAT YOU HAVE FULL AUTHORITY TO BIND LICENSEE
TO THESE TERMS. IF YOU DO NOT AGREE TO THESE TERMS,

– DO NOT DOWNLOAD, INSTALL, COPY, ACCESS, CLICK ON AN
“ACCEPT” BUTTON, OR USE THE PROGRAM; AND

– PROMPTLY RETURN THE UNUSED MEDIA, DOCUMENTATION, AND

Press Enter to continue viewing the license agreement, or
enter “1” to accept the agreement, “2” to decline it, “3”
to print it, “4” to read non-IBM terms, or “99” to go back
to the previous screen.
1

Product packages are available in /Downloads/TIVOLI-IMAGES/TADDM73PACK/itm-selfmon-support/UNIX/unix

The following products are currently installed in “/app/IBM/ITM”:

Agentless Monitoring for AIX Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Agentless Monitoring for AIX Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Agentless Monitoring for AIX Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Server support
Agentless Monitoring for HP-UX Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Agentless Monitoring for HP-UX Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Agentless Monitoring for HP-UX Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Server support
Agentless Monitoring for Linux Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Agentless Monitoring for Linux Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Agentless Monitoring for Linux Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Server support
Agentless Monitoring for Solaris Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Agentless Monitoring for Solaris Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Agentless Monitoring for Solaris Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Server support
Agentless Monitoring for Windows Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Agentless Monitoring for Windows Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Agentless Monitoring for Windows Operating Systems V06.30.04.00 @ Tivoli Enterprise Portal Server support
IBM Eclipse Help Server V06.30.04.00 @ Linux Intel R2.6, R3.0 (32 bit)/Intel R2.6 GCC 2.9.5 (64 bit)/Intel R2.6, R3.0 (64 bit)/x86_64 R2.6, R3.0 (32 bit)/x86_64 R2.6, R3.0 (64 bit)
IBM GSKit Security Interface V08.00.50.20 @ Linux x86_64 R2.6, R3.0 (64 bit)
IBM HTTP Server V08.00.06.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
IBM Installation Manager V01.06.03.01 @ Linux x86_64 R2.6, R3.0 (64 bit)
IBM Tivoli Enterprise Portal Server Extensions V08.00.06.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Monitoring Agent for IBM Tivoli Monitoring 5.x Endpoint V06.23.05.00 @ Tivoli Enterprise Portal Server support
Monitoring Agent for Linux OS V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Monitoring Agent for Linux OS V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Monitoring Agent for Linux OS V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Monitoring Agent for Linux OS V06.30.04.00 @ Tivoli Enterprise Portal Server support
Monitoring Agent for UNIX Logs V06.23.05.00 @ Tivoli Enterprise Portal Browser Client support
Monitoring Agent for UNIX Logs V06.23.05.00 @ Tivoli Enterprise Portal Desktop Client support
Monitoring Agent for UNIX Logs V06.23.05.00 @ Tivoli Enterprise Portal Server support
Monitoring Agent for UNIX OS V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Monitoring Agent for UNIX OS V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Monitoring Agent for UNIX OS V06.30.04.00 @ Tivoli Enterprise Portal Server support
Monitoring Agent for Windows OS V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Monitoring Agent for Windows OS V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Monitoring Agent for Windows OS V06.30.04.00 @ Tivoli Enterprise Portal Server support
Monitoring Agent for i5/OS V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Monitoring Agent for i5/OS V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Monitoring Agent for i5/OS V06.30.04.00 @ Tivoli Enterprise Portal Server support
Summarization and Pruning Agent V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Summarization and Pruning Agent V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Summarization and Pruning Agent V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Summarization and Pruning Agent V06.30.04.00 @ Tivoli Enterprise Portal Server support
TEC GUI Integration V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
TEC GUI Integration V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
TEC GUI Integration V06.30.04.00 @ Tivoli Enterprise Portal Server support
Tivoli Enterprise Monitoring Automation Server V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Monitoring SOAP Server V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Monitoring Server V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Portal Browser Client V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Portal Desktop Client V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Portal Server V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Services User Interface Extensions V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Services User Interface V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Performance Analyzer V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Tivoli Performance Analyzer V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Tivoli Performance Analyzer V06.30.04.00 @ Tivoli Enterprise Portal Server support
Universal Agent V06.23.05.00 @ Tivoli Enterprise Portal Browser Client support
Universal Agent V06.23.05.00 @ Tivoli Enterprise Portal Desktop Client support
Universal Agent V06.23.05.00 @ Tivoli Enterprise Portal Server support
Warehouse Proxy V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Warehouse Proxy V06.30.04.00 @ Tivoli Enterprise Portal Browser Client support
Warehouse Proxy V06.30.04.00 @ Tivoli Enterprise Portal Desktop Client support
Warehouse Proxy V06.30.04.00 @ Tivoli Enterprise Portal Server support

All agents require that application support files that contain agent-specific information be installed on the Tivoli Enterprise Monitoring Server that the agents will connect to, Tivoli Enterprise Portal Server and Tivoli Enterprise Portal desktop and browser client. Install application support before starting to install any Tivoli Enterprise Monitoring Agents.

KCIIN2463W Warning: This installation media does not contain any components which can be run on the current system platform architecture. To install components which can run on this system, please locate the installation media containing files similiar to *lx82*.jar.
NOTE: IF YOU ARE INSTALLING APPLICATION SUPPORT, CONTINUE WITH THE INSTALLATION TO SEE A LIST OF SUPPORT FILES.

Press Enter to continue, or type ‘q’ to quit:

Product packages are available for the following operating systems and component support categories:

1) Tivoli Enterprise Portal Browser Client support
2) Tivoli Enterprise Portal Desktop Client support
3) Tivoli Enterprise Portal Server support
4) Tivoli Enterprise Monitoring Server support

Type the number for the OS you want, or type “q” to quit selection:  1

You selected number “1” or “Tivoli Enterprise Portal Browser Client support”

Is the selection correct [ 1=Yes, 2=No ; default is “1” ] ? 1

The following application supports are available for installation:

1) Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00
2) all of the above

Type the numbers that correspond to the products that you want to install. Type “b” to change operating system, or type “q” to quit selection.
If you enter more than one number, separate the numbers by a comma or a space.

Type your selections here:  1

The following products will be installed:

Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00

Are your selections correct [ 1=Yes, 2=No ; default is “1” ] ? 1

… installing “Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Tivoli Enterprise Portal Browser Client support”; please wait.

=> installed “Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Tivoli Enterprise Portal Browser Client support”.
… Initializing component Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Tivoli Enterprise Portal Browser Client support.
… Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Tivoli Enterprise Portal Browser Client support initialized.

Do you want to install additional products or product support packages [ 1=Yes, 2=No ; default is “2” ] ? 1

KCIIN2463W Warning: This installation media does not contain any components which can be run on the current system platform architecture. To install components which can run on this system, please locate the installation media containing files similiar to *lx82*.jar.
NOTE: IF YOU ARE INSTALLING APPLICATION SUPPORT, CONTINUE WITH THE INSTALLATION TO SEE A LIST OF SUPPORT FILES.

Press Enter to continue, or type ‘q’ to quit:

Product packages are available for the following operating systems and component support categories:

1) Tivoli Enterprise Portal Browser Client support
2) Tivoli Enterprise Portal Desktop Client support
3) Tivoli Enterprise Portal Server support
4) Tivoli Enterprise Monitoring Server support

Type the number for the OS you want, or type “q” to quit selection:  2

You selected number “2” or “Tivoli Enterprise Portal Desktop Client support”

Is the selection correct [ 1=Yes, 2=No ; default is “1” ] ? 1

The following application supports are available for installation:

1) Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00
2) all of the above

Type the numbers that correspond to the products that you want to install. Type “b” to change operating system, or type “q” to quit selection.
If you enter more than one number, separate the numbers by a comma or a space.

Type your selections here:  1

The following products will be installed:

Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00

Are your selections correct [ 1=Yes, 2=No ; default is “1” ] ? 1

… installing “Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Tivoli Enterprise Portal Desktop Client support”; please wait.

=> installed “Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Tivoli Enterprise Portal Desktop Client support”.
… Initializing component Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Tivoli Enterprise Portal Desktop Client support.
… Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Tivoli Enterprise Portal Desktop Client support initialized.

Do you want to install additional products or product support packages [ 1=Yes, 2=No ; default is “2” ] ? 1

KCIIN2463W Warning: This installation media does not contain any components which can be run on the current system platform architecture. To install components which can run on this system, please locate the installation media containing files similiar to *lx82*.jar.
NOTE: IF YOU ARE INSTALLING APPLICATION SUPPORT, CONTINUE WITH THE INSTALLATION TO SEE A LIST OF SUPPORT FILES.

Press Enter to continue, or type ‘q’ to quit:

Product packages are available for the following operating systems and component support categories:

 1) Tivoli Enterprise Portal Browser Client support
 2) Tivoli Enterprise Portal Desktop Client support
 3) Tivoli Enterprise Portal Server support
 4) Tivoli Enterprise Monitoring Server support

Type the number for the OS you want, or type “q” to quit selection:  3

You selected number “3” or “Tivoli Enterprise Portal Server support”

Is the selection correct [ 1=Yes, 2=No ; default is “1” ] ? 1

The following application supports are available for installation:

1) Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00
2) all of the above

Type the numbers that correspond to the products that you want to install. Type “b” to change operating system, or type “q” to quit selection.
If you enter more than one number, separate the numbers by a comma or a space.

Type your selections here:  1

The following products will be installed:

Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00

Are your selections correct [ 1=Yes, 2=No ; default is “1” ] ?

… installing “Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Tivoli Enterprise Portal Server support”; please wait.

=> installed “Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Tivoli Enterprise Portal Server support”.
… Initializing component Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Tivoli Enterprise Portal Server support.
… Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Tivoli Enterprise Portal Server support initialized.

KCIIN2463W Warning: This installation media does not contain any components which can be run on the current system platform architecture. To install components which can run on this system, please locate the installation media containing files similiar to *lx82*.jar.
NOTE: IF YOU ARE INSTALLING APPLICATION SUPPORT, CONTINUE WITH THE INSTALLATION TO SEE A LIST OF SUPPORT FILES.

Press Enter to continue, or type ‘q’ to quit:

Product packages are available for the following operating systems and component support categories:

1) Tivoli Enterprise Portal Browser Client support
2) Tivoli Enterprise Portal Desktop Client support
3) Tivoli Enterprise Portal Server support
4) Tivoli Enterprise Monitoring Server support

Type the number for the OS you want, or type “q” to quit selection:  4

You selected number “4” or “Tivoli Enterprise Monitoring Server support”

Is the selection correct [ 1=Yes, 2=No ; default is “1” ] ? 1

The following application supports are available for installation:

1) Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00
2) all of the above

Type the numbers that correspond to the products that you want to install. Type “b” to change operating system, or type “q” to quit selection.
If you enter more than one number, separate the numbers by a comma or a space.

Type your selections here:  1

The following products will be installed:

Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00

Are your selections correct [ 1=Yes, 2=No ; default is “1” ] ? 1

… installing “Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Tivoli Enterprise Monitoring Server support”; please wait.

=> installed “Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Tivoli Enterprise Monitoring Server support”.
… Initializing component Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Tivoli Enterprise Monitoring Server support.
… Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Tivoli Enterprise Monitoring Server support initialized.

Do you want to install additional products or product support packages [ 1=Yes, 2=No ; default is “2” ] ?
… postprocessing; please wait.
… running /app/IBM/ITM/lx8266/cq/bin/helpmerg.sh
… finished postprocessing.
Installation step complete.

Following Tivoli Enterprise Monitoring Server product support were installed:
*) Monitoring Agent for TADDM Serviceability and Manageability

Note: This operation causes the monitoring server to restart.
Do you want to seed product support on the Tivoli Enterprise Monitoring Server? [ 1=Yes, 2=No ; default is “1” ] ? 1
Starting TEMS…
TEMS started…

The following new Tivoli Enterprise Monitoring Server product support packages will be seeded:
*) Monitoring Agent for TADDM Serviceability and Manageability

Choose one of the following options to add or update the situation distribution definition to include the default managed system groups:

1) ALL – This option adds the default managed system groups to all the applicable situations. Note that not all situations have the default managed group setting. For some, you might need to manually define the distribution in the Tivoli Enterprise Portal due to the specific content of the agent support package.
2) NONE – The default managed system group is not added to any situation.

Type your selections here [ number “1” or “ALL” is default ]:
1

Seeding support for Monitoring Agent for TADDM Serviceability and Manageability [1 of 1]
Product support seeding completed…
Stopping TEMS…
TEMS stopped…
All supports successfully seeded.

You may now configure any locally installed IBM Tivoli Monitoring product via the “/app/IBM/ITM/bin/itmcmd config” command.

insserv: warning: current start runlevel(s) (3 5) of script `vboxadd-x11′ overwrites defaults (empty).
insserv: Service network is missed in the runlevels 4 to use service ctrmc
insserv: Service syslog is missed in the runlevels 4 to use service ctrmc

Starting TEMS…
It can take up to ten minutes.
TEMS started…
Processing. Please wait…
Starting Tivoli Enterprise Monitoring Automation Server …
Tivoli Enterprise Monitoring Automation Server started
Processing. Please wait…
Starting IBM Eclipse Help Server …
IBM Eclipse Help Server started
Processing. Please wait…
Starting Tivoli Enterprise Portal Server …
Eclipse Help Server is required by Tivoli Enterprise Portal Server (TEPS) and will be started…
Eclipse Help Server is already started.
Tivoli Enterprise Portal Server started
Processing. Please wait…
Starting Monitoring Agent for Linux OS …
Monitoring Agent for Linux OS started

Once the product support installation is done you will need to reconfigure TEPS then we move on to install the actual agent on our TADDM 7.3 server. We start the installation by executing install.sh

 HUTADDM001-P1:/Downloads/TIVOLI-IMAGES/TADDM73PACK/itm-selfmon-support # ./install.sh
INSTALL

Enter the name of the IBM Tivoli Monitoring directory
[ default = /opt/IBM/ITM ]: /app/IBM/ITM

ITM home directory “/app/IBM/ITM” already exists.
OK to use it [ 1-yes, 2-no; “1” is default ]?  1

The following processes are currently running:

Product = Monitoring Agent for Linux OS  PID = 23040
install.sh warning: Existing products found to be running will be restarted during installation., continuing …

Continue with this installation [ 1-yes, 2-no; “1” is default ]?  1
Processing. Please wait…
Stopping Watchdog process…
Watchdog process was stopped.
Stopping Monitoring Agent for Linux OS …
Product Monitoring Agent for Linux OS was stopped gracefully.
Agent stopped…
/app/IBM/ITM

Select one of the following:

1) Install products to the local host.
2) Install products to depot for remote deployment (requires TEMS).
3) Install TEMS support for remote seeding
4) Exit install.

Please enter a valid number:  1

Initializing …
International Program License Agreement

Part 1 – General Terms

BY DOWNLOADING, INSTALLING, COPYING, ACCESSING, CLICKING ON
AN “ACCEPT” BUTTON, OR OTHERWISE USING THE PROGRAM,
LICENSEE AGREES TO THE TERMS OF THIS AGREEMENT. IF YOU ARE
ACCEPTING THESE TERMS ON BEHALF OF LICENSEE, YOU REPRESENT
AND WARRANT THAT YOU HAVE FULL AUTHORITY TO BIND LICENSEE
TO THESE TERMS. IF YOU DO NOT AGREE TO THESE TERMS,

– DO NOT DOWNLOAD, INSTALL, COPY, ACCESS, CLICK ON AN
“ACCEPT” BUTTON, OR USE THE PROGRAM; AND

– PROMPTLY RETURN THE UNUSED MEDIA, DOCUMENTATION, AND

Press Enter to continue viewing the license agreement, or
enter “1” to accept the agreement, “2” to decline it, “3”
to print it, “4” to read non-IBM terms, or “99” to go back
to the previous screen.
1

Product packages are available in /Downloads/TIVOLI-IMAGES/TADDM73PACK/itm-selfmon-support/unix

The following products are currently installed in “/app/IBM/ITM”:

IBM GSKit Security Interface V08.00.50.20 @ Linux x86_64 R2.6, R3.0 (64 bit)
Monitoring Agent for Linux OS V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)
Tivoli Enterprise Services User Interface V06.30.04.00 @ Linux x86_64 R2.6, R3.0 (64 bit)

All agents require that application support files that contain agent-specific information be installed on the Tivoli Enterprise Monitoring Server that the agents will connect to, Tivoli Enterprise Portal Server and Tivoli Enterprise Portal desktop and browser client. Install application support before starting to install any Tivoli Enterprise Monitoring Agents.

Product packages are available for this operating system and component support categories:

 1) IBM Tivoli Monitoring components for this operating system
 2) Tivoli Enterprise Portal Browser Client support
 3) Tivoli Enterprise Portal Desktop Client support
 4) Tivoli Enterprise Portal Server support
 5) Tivoli Enterprise Monitoring Server support
 6) Other operating systems

Type the number or type “q” to quit selection
[ number “1” or “IBM Tivoli Monitoring components for this operating system” is default ]:  1

You selected number “1” or “IBM Tivoli Monitoring components for this operating system”

Is the selection correct [ 1=Yes, 2=No ; default is “1” ] ? 1

The following products are available for installation:

 1) Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00
 2) Tivoli Enterprise Services User Interface Extensions  V06.22.04.00
 3) all of the above

Type the numbers that correspond to the products that you want to install. Type “b” to change operating system, or type “q” to quit selection.
If you enter more than one number, separate the numbers by a comma or a space.

Type your selections here:  1

The following products will be installed:

  Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00

Are your selections correct [ 1=Yes, 2=No ; default is “1” ] ? 1

Do you want to check prerequisites for the above components? [ 1=Yes, 2=No ; default is “1” ] ? 1
Running Prerequisite Scanner.
This may take a few minutes depending on the number of components being checked and the machine’s performance.
Prerequisite Scanner results for the selected components:
NOT AVAILABLE   Monitoring Agent for TADDM Serviceability and Manageability             /app/IBM/ITM/logs/prereqscan/20150123-100816/COMMON/result.txt
NOT AVAILABLE   Tivoli Enterprise-supplied JRE          /app/IBM/ITM/logs/prereqscan/20150123-100816/COMMON/result.txt
NOT AVAILABLE   IBM Tivoli Monitoring Shared Libraries          /app/IBM/ITM/logs/prereqscan/20150123-100816/COMMON/result.txt
NOT AVAILABLE   IBM GSKit Security Interface            /app/IBM/ITM/logs/prereqscan/20150123-100816/COMMON/result.txt

PASS    Prerequisite Scanner Overall Result             /app/IBM/ITM/logs/prereqscan/20150123-100816/COMMON/result.txt

Do you want to continue with the installation [ 1=Yes, 2=No ; default is “1” ] ? 1

… installing “Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Linux x86_64 R2.6, R3.0 (64 bit)”; please wait.

=> installed “Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Linux x86_64 R2.6, R3.0 (64 bit)”.
… Initializing component Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Linux x86_64 R2.6, R3.0 (64 bit).
… Monitoring Agent for TADDM Serviceability and Manageability  V07.22.00.00 for Linux x86_64 R2.6, R3.0 (64 bit) initialized.

Do you want to install additional products or product support packages [ 1=Yes, 2=No ; default is “2” ] ?
… postprocessing; please wait.
… finished postprocessing.
Installation step complete.

You may now configure any locally installed IBM Tivoli Monitoring product via the “/app/IBM/ITM/bin/itmcmd config” command.

insserv: warning: current start runlevel(s) (3 5) of script `vboxadd-x11′ overwrites defaults (empty).

Processing. Please wait…
Starting Monitoring Agent for Linux OS …
Monitoring Agent for Linux OS started

Configure the Monitoring Agent for TADDM Serviceability and Manageability

Start the Manage Tivoli Enterprise Monitoring services console on the newly installed agent box using the $CANDLEDIR/bin/itmcmd manage & command.

tivoli-enterprise-monitoring-services-console-startedRight click on the Monitoring Agent for TADDM Serviceability and Manageability entry and select configure.

tivoli-enterprise-monitoring-services-console-configureFill in the login credentials for your TADDM server then click Next.

tivoli-enterprise-monitoring-services-console-configure-taddm-loginSelect the TADDM mode appropriate for your TADDM server. We picked Primary Storage Server as we have installed our agent on this type of TADDM server. Click OK to finish the first part of agent configuration.

tivoli-enterprise-monitoring-services-console-configure-select-taddm-serviceFill in the agent connection details in the next window. The value here normally is either an rtems in your environment or the hub tems if you are running a one box ITM test environment just like myself. Click Save to finialize the agent configuration.

tivoli-enterprise-monitoring-services-console-configure-agent-connection-parametersThe Monitoring Agent for TADDM Serviceability and Manageability will have to be started from the command line as it only works correctly if the taddmusr user is running it.

HUTADDM001-P1:/app/IBM/ITM/bin # su – taddmusr
taddmusr@HUTADDM001-P1:~> /app/IBM/ITM/bin/itmcmd agent start za
Processing. Please wait…
Starting Monitoring Agent for TADDM Serviceability and Manageability …
Monitoring Agent for TADDM Serviceability and Manageability started
taddmusr@HUTADDM001-P1:~>

Finally this is how the agent looks on the TEP console:

taddm-agent-teps-consoleIf you need more information on the topic please see the official agent documentation here.

 

Step by Step Installing & Configuring Netcool/OMNIbus EIF probe for Omnibus 8.1

This article will describe, how to install and configure the Netcool/OMNIbus EIF probe that comes with the 8.1 version of Netcool/OMNIbus. As usual we will use SLES 11 SP3 as host OS.

Netcool/OMNIbus 8 Plus Probe for Tivoli EIF provides the capability to capture events sent from ITM and forward them onto the Omnibus console. It is not to be confused with IBM Tivoli Netcool/OMNIbus Gateway for Tivoli EIF which is used to forward events from IBM Tivoli Netcool/OMNIbus to applications that accept events in EIF format.

First locate the Netcool/OMNIbus 8 Plus Probe for Tivoli EIF (nco-p-tivoli-eif 13_0) Multiplatform English (CN1FVEN ) package on Passport Advantage, if you do not have it downloaded already. Make sure that you download the one that is coming with the 8.1 version of Omnibus.

Installing Netcool/OMNIbus 8 Plus Probe for Tivoli EIF

From version 8.1 probe installation is being done using the IBM Installation Manager not with the nco_install_integration utility.

Start the IBM Installation Manager using the IBMIM command. Usually this is located in /opt/IBM/InstallationManager/eclipse directory. Once started go to File-> Preferences.

IBM_Installation_Manager_propertiesSelect Add repository. Specify the location of the repository.config file in the EIF probe image directory. This will add that location to the repository list.

IBM_Installation_Manager_add_repositoryClick install on the main screen to start the installation.

IBM_Installation_Install_startingSelect Netcool/Omnibus Probe nco-p-tivoli-eif then click next.

IBM_Installation_Install_select_packageAccept the License agreement, then click next at the Install packages window. If your prerequisites are not met you will see a list of missing package groups.

IBM_Installation_Install_Install_packagesConfirm the installation package by clicking next and the following window.

IBM_Installation_Install_confirmClick Install to start the installation at the next window.

IBM_Installation_Install_buttonIf everything goes fine your installation should now be done.

IBM_Installation_finish

Installing the Situation Update Forwarder

The Situation Update Forwarder is located on the IBM Tivoli Monitoring tools CD, the latest version can be downloaded from fixcentral. In this example I am using the the tools package from ITM 6.3 Fixpack 4:

  • 6.3.0-TIV-ITM_TMV-Tools-FP0004

After unpacking the image the installation can be started using the ESync3000Linux.bin command.

Situation_update_forwarder_welcomeAfter accepting the License Agreement select the installation location of the Situation Update Forwarder the click Next.

Situation_update_forwarder_select_install_locationLeave the setting on default in the following window then click Next.

Situation_update_forwarder_settingsAdd the login credentials for your ITM server in the next pane. Remember situation update forwarder changes events on TEP once they are modified on the Omnibus console, however if you change ( acknowledge for example ) an event in ITM. The change will not be synchronized into Omnibus.

Situation_update_forwarder_itm_settings Click Next at the following pane and the installation starts immediately. If everything goes fine you should see the following window:

Situation_update_forwarder_finish

Execute Situation Update Forwarder SQL scripts on Omnibus

Situation Update Forwarder SQL scripts are used update the Omnibus DB Schema.This will create the required DB modifications by the Netcool/OMNIbus 8 Plus Probe for Tivoli EIF.

Apply the SQL files located in the Situation Event Forwarder’s omnibus directory in following order:

$OMNIHOME/bin/nco_sql -user root -password ******* -server NCOMS < ./itm_proc.sql
$OMNIHOME/bin/nco_sql -user root -password ******* -server NCOMS < ./itm_db_update.sql
$OMNIHOME/bin/nco_sql -user root -password ******* -server NCOMS < ./itm_sync.sql

HUOMNIBUS001-P1:/app/IBM/SitForwarder/omnibus # $OMNIHOME/bin/nco_sql -user root -password ********* -server NCOMS < ./itm_proc.sql
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
HUOMNIBUS001-P1:/app/IBM/SitForwarder/omnibus # $OMNIHOME/bin/nco_sql -user root -password ********* -server NCOMS < ./itm_db_update.sql
ERROR=Object exists on line 48 of statement
‘—————————————————————-…’, at or
near ‘TECHostname’
ERROR=Object exists on line 2 of statement ‘alter table alerts.status add column
TECFQHostname varchar(64);…’, at or near ‘TECFQHostname’
ERROR=Object exists on line 2 of statement ‘alter table alerts.status add column
TECDate varchar(64);…’, at or near ‘TECDate’
ERROR=Object exists on line 2 of statement ‘alter table alerts.status add column
TECRepeatCount int;…’, at or near ‘TECRepeatCount’
ERROR=Object exists on line 7 of statement
‘—————————————————————–…’, at or
near ‘ITMStatus’
ERROR=Object exists on line 2 of statement ‘alter table alerts.status add column
ITMDisplayItem varchar(128);…’, at or near ‘ITMDisplayItem’
ERROR=Object exists on line 2 of statement ‘alter table alerts.status add column
ITMEventData varchar(3096);…’, at or near ‘ITMEventData’
ERROR=Object exists on line 2 of statement ‘alter table alerts.status add column
ITMTime varchar(23);…’, at or near ‘ITMTime’
ERROR=Object exists on line 2 of statement ‘alter table alerts.status add column
ITMHostname varchar(64);…’, at or near ‘ITMHostname’
ERROR=Object exists on line 3 of statement ‘alter table alerts.status add column
ITMPort varchar(64);…’, at or near ‘ITMPort’
ERROR=Object exists on line 3 of statement ‘alter table alerts.status add column
ITMIntType varchar(1);…’, at or near ‘ITMIntType’
ERROR=Object exists on line 2 of statement ‘alter table alerts.status add column
ITMResetFlag varchar(1);…’, at or near ‘ITMResetFlag’
ERROR=Object exists on line 2 of statement ‘alter table alerts.status add column
ITMSitType varchar(1);…’, at or near ‘ITMSitType’
ERROR=Object exists on line 2 of statement ‘alter table alerts.status add column
ITMThruNode varchar(64);…’, at or near ‘ITMThruNode’
ERROR=Object exists on line 2 of statement ‘alter table alerts.status add column
ITMSitGroup varchar(1284);…’, at or near ‘ITMSitGroup’
ERROR=Object exists on line 2 of statement ‘alter table alerts.status add column
ITMSitFullName varchar(256);…’, at or near ‘ITMSitFullName’
ERROR=Object exists on line 2 of statement ‘alter table alerts.status add column
ITMApplLabel varchar(8);…’, at or near ‘ITMApplLabel’
ERROR=Object exists on line 2 of statement ‘alter table alerts.status add column
ITMSitOrigin varchar(32);…’, at or near ‘ITMSitOrigin’
ERROR=Attempt to insert duplicate row on line 8 of statement
‘——————————————————————…’
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
ERROR=Object not found on line 9 of statement
‘——————————————————————…’, at or
near ‘thrunode_change_handler’
(0 rows affected)
(0 rows affected)
HUOMNIBUS001-P1:/app/IBM/SitForwarder/omnibus # $OMNIHOME/bin/nco_sql -user root -password ********* -server NCOMS < ./itm_sync.sql
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)
(0 rows affected)

Configuring Netcool/OMNIbus 8 Plus Probe for Tivoli EIF

  • Copy the itm_event.rules file from the omnibus directory of the Situation Update Forwarder installation location to $OMNIHOME/probes/linux2x86/
  • Uncomment the itm_event.rules include definition in tivoli_eif.rules
    located in $OMNIHOME/probes/linux2x86

# This is the generic ITM situation handling. This may get modified if
# later include files are used. Must be included if the predictive or
# virtualization include lines are

include “itm_event.rules”

Make Netcool/OMNIbus 8 Plus Probe for Tivoli EIF start with Process Agent ( PA )

What is Process Control System and Process Agent?

“The process control system runs external procedures that are specified in automations. Automations detect changes in the ObjectServer and run automated responses to those changes. It also manages local and remote processes. Use process control to configure remote processes in order to simplify the management of Tivoli Netcool/OMNIbus components such as ObjectServers, probes, and gateways. The process control system consists of Process agents, which are programs installed on each host for managing processesand  A set of command-line utilities that provide an interface to process management.”

We use this to manage every probe / gateway running on our Omnibus server. Repeat the following steps to configure the Process Agent to manage Netcool/OMNIbus 8 Plus Probe for Tivoli EIF:

Start the Administration Console using the nco_config command in $OMNIHOME/bin/

netcool_process_agent_gui

Log in to your process agent using the OS user id and password.

netcool_process_agent_login

Click on New process from the drop down menu after right clicking on Core:

process_agent_create_processDefine the location of the nco_p_tivoli_eif executable, then click OK.

starting_process_process_agent

Start the nco_p_tivoli_eif process using the drop down menu.

process_agent_start_probeIf everything was configured properly you should see something similar.

process_agent_started_probe

Start the Situation Update Forwarder

If you would like to have synchronization between TEP and Omnibus you can run the Situation Update Forwarder. It is important to point out that this is not required for proper event forwarding from ITM to Omnibus, only required if you would like to have your changes done on Omnibus to be synched down to TEP. You can run SUF with the following command:

../SitForwarder/bin/StartSUF.sh

 

 

ITM Windows OS Agent slows down periodically

We recently ran into an issue with one of our deployed ITM Windows OS agents. The problem was that the agent slowed down a few times a day. This means that sometimes it took minutes for the data to show up on TEP. When we checked the Windows OS Agent logs we found the following error repeating:

(54475515.0002-27BC:knt67agt.cpp,284,”TakeSample”) remoteFailureCount
(5447551A.0000-27BC:knt67agt.cpp,949,”ipToHostname”) gethostbyaddr error . Exiting
(5447551A.0001-27BC:knt67agt.cpp,283,”TakeSample”) ipToHostName failure for IP: 114.106.84.40

We then added the following parameters to the windows OS agent environment file which has solved the issue:

NT_LOG_THROTTLE=1
NT_PERFMON_MEMORY_CHECK=1
REVERSE_LOOKUP_ACCEPTED_FAILURES=10

Very likely the DNS resolution problems caused the agent to wait for the hostnames to be resolved therefore it was hanging until it got a timeout.

Adding a MySQL Data Source to TEPS using JDBC

We had a requirement to display data from a remote MySQL database on TEPS. There is absolutely no documentation on how to do this so I attempt to explain how we managed to sort this out.

1: Check if you can get to the MySQL database from the TEPS server. You can run the following PHP script if it is not giving an error the connection is working fine! Replace
the highlighted variables with your own details.

<?php

// opening DB connection

$dbhost = ‘database_hostname‘;
$dbuser = ‘database_username‘;
$dbpass = ‘database_password‘;

$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die (‘Error connecting to mysql’);

$dbname = ‘database_name‘;
mysql_select_db($dbname);

?>

2: Add the MySQL data source to the TEPS datasource list. We used the following command:

/opt/IBM/ITM/bin/tacmd configurePortalServer -s DSUSER2 -p UID=database_user PWD=database_password CONNECTION_TYPE=JDBC KFWJDBCDRIVER=com.mysql.jdbc.Driver KFWDSURL=jdbc:mysql://database_hostname:3306/database_name

This will create the DSUSER2 datasource.

3: Download MySQL JDBC connection driver from http://dev.mysql.com/downloads/connector/j/

4: Add MySQL JDBC connection driver to cq.ini this will ensure that the driver is loaded.

KFW_JVM__CTJDBC__CLASSPATH=$CANDLEHOME$/$BINARCH$/$PRODUCTCODE$/lib/tepjdbc.jar:/app/mysql-connector-java-5.1.24-bin.jar:$KFW_EWAS_HOME$/derby/lib/derby.jar:$KFW_JDBC_DRIVER$

5: Restart TEPS

Once teps is restarted the new data source should show up when you try to create a custom query on TEPS. Simply enter the SQL you would like to run against the MySQL database and the data should show up on teps in table format.

Configuring TEPS on SUSE Linux 64 – Fixes

I found 2 problems during TEPS configuration.

1: Had to uncomment the ip v6 localhost entry

#::1 localhost ipv6-localhost ipv6-loopback

If you have the same problem you will see the following errors in the kfwjras1.log:

*** (RAS1 Tracing has been modified: New Filter: ERROR
*** (0) Trace options are:
*** () Trace mode: LOCAL (threaded output) to /app/IBM/ITM/logs/kfwjras1.log
*** (0) Trace parameters: ERROR
(51544790.29e6edc0-(null)main:CTJVMController,0,”CTJVMController.com.ibm.TEPS.CTJVMDeployment.CTJVMController.cinit<>”) The build level is:CJ062302.d2278a
(515447b1.37baf7c0-(null)main:QueryModelManager,0,”QueryModelManager._init()”) pullsize is set to:100
(515447b1.38538e40-(null)main:CTEventManagerBrokerImpl,0,”CTEventManagerBrokerImpl.CTQueryBrokerImpl()”) Exception: failed to resolve CTEvent::Manager
(515447b1.38538e40-(null)main:CTEventManagerBrokerImpl,0,”CTEventManagerBrokerImpl.CTQueryBrokerImpl()”) IDL:candle.com/CTIOR/NotFound:1.0
(515447b1.3862d080-(null)main:CTEventManagerBrokerImpl,0,”CTEventManagerBrokerImpl.CTQueryBrokerImpl()”) exception candle.fw.corba.CTIOR.NotFound {}
at candle.fw.corba.CTIOR.NotFoundHelper.read(NotFoundHelper.java:28)
at candle.fw.corba.CTIOR._ManagerStub.resolveObjectName(_ManagerStub.java:175)
at com.ibm.TEPS.CTIOR.CTIORBrokerImpl.resolveObjectName(CTIORBrokerImpl.java:108)
at com.ibm.TEPS.CTIOR.CTIORResolverImpl.resolve(CTIORResolverImpl.java:71)
at com.ibm.TEPS.CTEvent.CTEventManagerBrokerImpl.<init>(CTEventManagerBrokerImpl.java:64)
at com.ibm.TEPS.CTJVMDeployment.CTJVMDeploymentManager.getCTEventManagerBroker(CTJVMDeploymentManager.java:224)
at com.ibm.TEPS.CTEvent.EventModelManager.<init>(EventModelManager.java:200)
at com.ibm.TEPS.CTEvent.EventModelManager.make(EventModelManager.java:190)
at com.ibm.TEPS.CTJVMDeployment.CTJVMDeploymentManager.<init>(CTJVMDeploymentManager.java:128)
at com.ibm.TEPS.CTJVMDeployment.CTJVMJ2SEServerActivator.startServer(CTJVMJ2SEServerActivator.java:61)
at com.ibm.TEPS.CTJVMDeployment.CTJVMController.main(CTJVMController.java:88)

(515447b1.387212c0-(null)main:CTJVMDeploymentManager,0,”CTJVMDeploymentManager.com.ibm.TEPS.CTJVMDeployment.CTJVMDeploymentManager.CTJVMDeploymentManager(CTJVMOrb,CTJVMServerActivator)”) Using trac
ing filter:ERROR
*** (RAS1 Tracing has been modified: New Filter: ERROR
(515447b1.38ec24c0-(null)CTJVMDeploymentManager:CTJVMDeploymentJ2SEAdapter,0,”CTJVMDeploymentJ2SEAdapter.com.ibm.TEPS.CTJVMDeployment.CTJVMDeploymentJ2SEAdapter.makeDeployable()”) makeDeployable wi
th moduleID:KFW_JVM__CTJDBC classpath:/app/IBM/ITM/lx8263/cq/lib/tepjdbc.jar:/app/IBM/ITM/li6263/iw/derby/lib/derby.jar: className:com.ibm.TEPS.CTSQLJDBC.CTSQLJDBCModule
(515447b1.3a4b1880-(null)CTJVMDeploymentManager:CTJVMDeploymentJ2SEAdapter,0,”CTJVMDeploymentJ2SEAdapter.com.ibm.TEPS.CTJVMDeployment.CTJVMDeploymentJ2SEAdapter.makeDeployable()”) makeDeployable wi
th moduleID:KFW_JVM__CTCEV classpath:/app/IBM/ITM/lx8263/cq/lib/tepcev.jar:/app/IBM/ITM/lx8263/cq/lib/jcf.jar:/app/IBM/ITM/lx8263/cq/lib/jconn3.jar:/app/IBM/ITM/lx8263/cq/lib/jrim.jar:/app/IBM/ITM/
lx8263/cq/lib/jsafe.zip:/app/IBM/ITM/lx8263/cq/lib/niduc.jar:/app/IBM/ITM/lx8263/cq/lib/tec_ui_svr_stubs.jar:/app/IBM/ITM/classes/deploy.jar className:com.ibm.TEPS.CTCEV.CTCEVModule
(515447b2.005b8d80-(null)CTJVMDeploymentManager:CTJVMDeploymentJ2SEAdapter,0,”CTJVMDeploymentJ2SEAdapter.com.ibm.TEPS.CTJVMDeployment.CTJVMDeploymentJ2SEAdapter.makeDeployable()”) makeDeployable wi
th moduleID:KFW_JVM__CTMCS classpath:/app/IBM/ITM/lx8263/cq/lib/tepmcsattribute.jar className:com.ibm.TEPS.CTMCSAttributeService.CTMCSAttributeModule

2: When the itmuser is created configuration using the itmcmd manage gui the password for itmuser is set incorrectly. I had to manually reset the users password to be able to connect to the TEPS database.

passwd itmuser

Configuring Tivoli Common Reporting with DB2 and ITM Warehouse Database on AIX

The ITM Warehouse database has to be added as a Data Source Connection to Tivoli Common Reporting. To be able to do that we have no make sure that the Tivoli Common Reporting server sees the native DB2 libraries.

We had to edit the startTCRserver.sh file to add additional environment variables to achieve this.

We have added the path to the DB2 32 bit libraries since Tivoli Common Reporting expects 32 bit libraries even though you system is 64 bit:

LIBPATH=/opt/IBM/DB2/V9.7/lib32
export LIBPATH

In some cases you might also need to source the DB2 environment variables:

. /home/[db2instance]/sqllib/db2profile

Once these are done log in to the Tivoli Integrated Portal and go to the following:

Go to Reporting -> Common Reporting

Go to Launch drop-down list, and choose the Administration.

Select Configuration tab and Data Source Connections

Then select the New Data Source icon on the upper right corner of the browser window.

Type the name of the datasource and press next. We used tdw21 as datasource name.

Select DB2 from the drop down menu then click next

Fill in the database name and connection string. The database connection string should look the following:

jdbc:db2://[database-server-hostname]:[db2-connection-port]/[db2-database-name]

In our case it is:

jdbc:db2://localhost:50000/WAREHOUS

Then fill in the database connection user id and password on the bottom of the page and press the “test connection” link.

If everything went fine you should see that the connection has succeeded. Save the database settings at the next window and your DB2 database is now setup.