Entries from May 2008

five point someone

May 25, 2008

Yesterday I finished the book “five point someone”. I had bought the book in the last trip to Hyderabad and finished some chapters, when I used to have some spare time. Remaining chapters I finished yesterday in one shot. When I finished the book it was 4 in the morning.
No doubt this book is complete […]

System Testing

May 24, 2008

Now, System Testing is all set to be started and this will be witnessed by STQC. There were some issues regarding hardware installation which is gradually being resolved. Meanwhile I am back to Mumbai and currently providing phone and online support to the team at Hyderabad.
And at time when we require one person most Peeyush […]

Configuring Multiple JBoss Instances On One Machine

May 24, 2008

We can run multiple instances of JBoss on same IP but different ports. But this is not suggested in production because it makes firewall rules too difficult to maintain. Usually used in development to try out clustering behavior.
So how to do it?
If you installed JBoss from the ZIP file, modify $JBOSS_HOME/server/default/conf/jboss-service.xml and uncomment “Service Binding” […]

How to Set Environment Variables in Linux

May 24, 2008

How to set PATH environment variable?
How to set JAVA_HOME environment variable?
How to set Java bin directory to PATH?
How to set JBOSS_HOME environment variable? (If you are using JBoss Appliation Server)
How to set ANT_HOME environment variable and its bin to PATH? (If you are using Ant build tool)

If you want to set these variable globally. Then […]

Making one Jboss listen to 2 IPs

May 24, 2008

With JBoss 4.2, it is mandatory to bind it with some IP.
e.g. ./run.sh -c default -b 192.168.12.3
So if you do not mention any IP, it will bind it with the localhost and then it will not be accessible from outside.
But in one of projects that I am currently working on, had the following scenario:
We had […]