Thursday December 25, 2008
A Great Gift for January 20, 2009
Today, time to blog about something fun.
Shortly after the recent elections, I came across a new book, Feisty First Ladies (and other unforgettable White House Women) by Autumn Stephens.
I love history, and this little volume puts a fun and somewhat irreverent spin on the wives, mistresses, mothers, and other women who have left their own imprint on our nation's history by virtue of their personalities - or lack thereof.
The book includes essays on:
Feisty First Ladies has a lot of fun information to share with your friends. For example:
A great read in advance of the upcoming Obama inauguration. I noticed it's already available at Amazon.
Posted at 04:10PM Dec 25, 2008 by dgolds in Other | Comments[1]
Monday December 22, 2008
Changing Default GlassFish v3 Prelude Port Numbers 4848, 8080, and 8181
When you create courses, you sometimes do crazy things like installing multiple GlassFish domain administration servers (DAS) in a single host.
When you install GlassFish, it gives you default port numbers of of 4848 (for administration), 8080 (for the HTTP listener), and 8181 (for the HTTPS listener). But what do you do if you want to change them?
I got a few ideas googling "asadmin port number" and the like but couldn't really find a good example. So, I figured out how you do it and thought I would post an example in case anyone finds themselves in the same predicament as I did today.
Here are some examples that work in GlassFish v3 Prelude:
asadmin set server.http-service.http-listener.http-listener-1.port=10080
asadmin set server.http-service.http-listener.http-listener-2.port=10443
asadmin set server.http-service.http-listener.admin-listener.port=14848
It's handy to know you can grep for server properties in GlassFish v3 Prelude as follows:
asadmin get server | grep listener
shows all the properties with the text "listener" in them.
asadmin set --port 14848 server.http-service.http-listener.http-listener-2.port=10443
For GlassFish v2, use the asadmin get command as described here.
Hope this is helpful to someone.
Posted at 05:27PM Dec 22, 2008 by dgolds in Open Source | Comments[11]
Wednesday December 10, 2008
Installing OpenSSO Enterprise 8.0 on GlassFish v3 Prelude Release
I've been building some training for OpenSSO Enterprise 8.0, and I want to use GlassFish v3 Prelude Release as my OpenSSO web container for this training.
So I pulled down the GlassFish release, installed it, deployed OpenSSO, started up the OpenSSO console, and logged in. But instead of seeing the console main page, the login page appeared a second time, with the user name and password fields blanked out.
The issue has to do with cookie handling. Dennis noted it in his blog entry here.
Well, it turns out getting OpenSSO Enterprise 8.0 to run on this release of GlassFish is a snap - if you know the workaround. Here are the steps for Solaris OS:Posted at 09:50AM Dec 10, 2008 by dgolds in Open Source | Comments[4]