My PMR to IBM Tivoli support
I’d be surprised if there wasn’t already an ER for this, but if you
don’t mind, please submit one.
Do you know if anybody else has asked or criticized this major
limitation.
Its hard to believe that there isn’t something that emulate what a
simple one line script would accomplish.
In the ER, I would expect support for perl regex pattern, where patterns
can be indexed to return the matching index as a displayable value.
match process string against /opt/IBM*\s+(\S+java*\)s+server1 pattern and return pattern matching (\S+java*\)
IBM’s Response
Yes, we already have an ER opened for this case, please note down the
request number: MR0108092213
****
ITM 6 has limitations when monitoring processes.
Customer needs to monitor processes with very long names, in this case
the WebSphere NodeAgent process with 4999 characters. The unique string
“nodeagent” is at the very end of the process name and the Unix OS agent
cannot find this process: The attribute command_name is limited to 100
characters and for command_name_U to 768 Bytes.
Cust needs a possibility to monitor such long process names using the
standard ITM 6 OS agent.
****
It is already a recognized request. You can follow up on the progress of
the request with your IBM Rep. Please let me know if you have any other
questions.
Tags: ibm, java ibm, line script, name, pattern, process, regex pattern, Rep. Please, Request, request number, server1, STRING, unix os
Posted in ITM6.x | Comments (0)
I was experimenting with WAMP on my laptop, not a big deal in itself, but when I rebooted the Apache server failed to start.
Event logs showed something else had already been binded to port 80.
Quick Fix was to determine which PID had it by running the following:
netstat -ano
From there you can use task manager, determine the conflicting process, kill the PID.
(If you had CYGWIN installed)
netstat -ano | grep :80
ps -Wef | grep <pid> # To determine the process
kill -9 <pid>
Tags: ano, Apache, apache server, binded, cygwin, Event, event logs, Fix, grep, laptop, lt, manager, netstat, PID, port, process, server, task, task manager, WAMP, Wef
Posted in Non-Tivoli, WindozeMiscellaneous | Comments (0)
Not that there is a lot to the TDW layout, but knowing the schema assists in the documentation process and developing queries and procedures of the TDW (Tivoli Data Warehouse).
Make short work of this by using the opensource tools of SchemaSpy and Graphviz
SchemaSpy is a jar file that supports over 21 DBs, including the 3 supported by ITM TDW (Oracle, Sybase, MSSQL) and is run from the command line to generate a html directory of content about the interrogated schema.
jdsmedia@deant61p /usr/local/bin
$ java -jar ./schemaspy.jar -t ora -db testtdw -s ITMUSR -dp c:\\OraClient11g\\jdbc\\lib\\ojdbc5_g.jar -u XXX -p XXX -o c:/cygwin/tmp/tdw
Using database properties:
[./schemaspy.jar]/net/sourceforge/schemaspy/dbTypes/ora.properties
Connected to Oracle – Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 – 64bit Production
With the Partitioning, OLAP and Data Mining options
Gathering schema details………………………………………………..
………………………………. |
Tags: cygwin, Data, data mining, data warehouse, database, database properties, dbs, Documentation, dp, file, graphviz, html directory, jar, jar file, java jar, jdbc, layout, lot, mssql, olap, opensource, ora, oracle, oracle database, oracle sybase, process, schema, SchemaSpy, tdw, Tivoli, tivoli data, tmp, warehouse, work
Posted in ITM, TDW2.x | Comments (0)