Displaying posts tagged with

“lt”

Increasing the TEPS Navigator “more” limit

In some cases the TEPS navigator will hang on the “more” nodes, I haven’t bothered trying to run down the how and why, I just want to see all child-nodes when I select a parent-node. Here’s how you do it… Add the following lines to the teps.jnlpt, then rebuild the teps.jnlp <property name=”cnp.http.url.host” value=”$HOST$”/> <property [...]

Windows Ports

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

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

TEMS dies: EIB Table Corruption

Sympton: TEMS process dies. Getting “Verify of <table> failed” in ms logs. Possible EIB Table corruption.   root@someserver:/tmp> /opt/IBM/ITM/ls3263/ms/bin/kgldbutl < qa1cstsc.def root@someserver:/tmp> root@someserver:/tmp> /opt/IBM/ITM/ls3263/ms/bin/kgldbutl < qa1cstsc.def Enter DataBase Utility Command Enter DataBase Utility Command DataBase file QA1CSTSC created Enter DataBase Utility Command Index PrimaryIndex,U for database QA1CSTSC created Enter DataBase Utility Command

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