Well, it started as a place for middleware notes, tips and tricks, but really, this is a place for me to list out some of the general notes, etc I have for myself. If anyone else finds them useful... Great! If not, at least I have a clipboard of solutions for me...
Wednesday, December 24, 2008
Easier WLST syntax
An easy way to simplify WLST script syntax while working in interactive mode is to use the easeSyntax() command after you log in.
Using the Example from Satya Ghattu's blog ( http://satya-ghattu.blogspot.com/2008/11/easing-wlst-syntax-while-navigating.html )
cd(“/Servers/testServer”)
ls()
After executing easeSyntax() to navigate around you will use.
cd /Servers/testServer
ls
piece of cake. Thanks for the tidbit, Satya. This will be a great timesaver for me as I am working on developing new WLST scripts.
- Brian
Tuesday, December 23, 2008
Tuesday, December 2, 2008
Creating Perl Modules
I've always been gun shy about creating perl modules for my code because I've never found a great tutorial that breaks it all down.
Today it all changes as I cvame across this posting that does a pretty good job at breaking down how it all works. At least in a simple case...
http://www.linuxformat.co.uk/modules.php?op=modload&name=News&file=article&sid=748
Getting the most recent row for each id
I was working on configTracker today (a pet project to watch server configurations for changes and do alerting, reporting, etc...) and ran into a scenario where I needed to find the most recent row in a table for a given id.
The table has a column called aud_ts of type timestamp. and a column call host_id of type integer.
After several iterations (my SQL skills are waining after not developing for 5 or so years....) I came up with:
select host_id, max(aud_ts) from myTable group by host_id;
Then, I can join this table against all the others in the system on host_id and aud_ts and know I'm getting the most recent info for this server.
Tuesday, November 25, 2008
Checking Hobbit Alerts
We use Hobbit to monitor many of our UNIX based systems. You can check your hobbit configuration by executing a command similar to the following:
./bin/bbcmd - -env=etc/hobbitserver.cfg hobbitd_alert - -test
Sunday, October 12, 2008
Searching for all the files containing a string
Recursively search all files from the current directory down, ignoring case:
grep -ir search_string .
Recursively search all files from the current directory down, ignoring case, and only get the file listing:
grep -irl search_string .
Ramblings of an Admining Newbie
I'm using this blog more or less as a place to put some notes to myself about things as I learn them. I'm working as a Middleware administrator, which I've been doing for a few years in WebSphere land, but now I have moved over to WebLogic land, and am also responsible for the SOA products Oracle (formerly BEA) has to offer... Aqualogic Service Bus (ALSB), WebLogic Integration (WLI), and Aqualogic Data Services Platform (ALDSP).
So, this blog will be a hodgepodge of ramblings, helpful notes, and rants.
The views expressed on this blog are in NO WAY the view of my employer, who I won't even share here so you don't get the wrong idea.... :)
Subscribe to:
Posts (Atom)