Displaying posts tagged with

“file”

ITM v6 Gripes (Missing functionality)

As a Tivoli consultant, I’ve had to tweak, torque and tune ITM v6 to fulfill requirements not met out of the box. Several of my clients have felt ripped off by IBM for having paid for a product billed as covering best practices out of the box, only to discover, there is significant development costs [...]

ITM TDW Schema

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 [...]

ITM62 T/EC Rulebase Changes

ITM 6.2 FP1 contains several new and changed T/EC class changes, ranging from new classes, new slots, and only ONE new slot (omnux_value replacing kux_value). **I have not seen an ITM event containing kux_value nor omnux_value, but to be safe, I added the old ‘kux_value’ slot to the kux.baroc file. TOTAL: 22 baroc files Baroc [...]

Hosting : Why does every visit to my website have the same IP address?

Reference: http://help.mosso.com/article.php?id=180 Your script is calling for the “REMOTE_ADDR” and receives the IP of a server in front of one of our back-end servers. The web facing server is then passing the scripts output without giving the expected REMOTE_ADDR of the visitor. In order for your scripts to recognize that they are on a cluster [...]

Extract TAR files over SSH

Instead of copying a large tar file over ssh then extracting, take care of the whole process with one command: PUSH METHOD: cat  tarfile | ssh –C user@remotehost “(cd targetdirectory && tar –xf -)” This will stream the tarfile over a compressed ssl tunnel and the other side will only extract if the target directory [...]