Monthly Archives: January 2007

Firefox 2 on Fedora Core 6

I am writing this post without direct access to my system. I’ll edit it later if I discover problems….

I looked at and/or tried some of the suggestions on the web. These included:

1. Doing it with the “remi” library. I didn’t try that as I was not familiar with that library.

2. Enabling the development repository under yum. I tried this but could not get past the gecko dependency problems.

Finally, I went back to what I first tried i.e. download 2.0.0.1 tar and install it.

Upon startup, I received a libstdc++…so5 not found error. I resolved this by doing an Add Software and installing the compat…3… libraries.

Note, if you say yes to make it the default browser, running by clicking on the browser icon on the desktop header will invoke your Firefox 2. You don’t need to change /usr/bin/firefox unless you plan to run from the command line. Even then you can run /usr/local/lib/firefox instead.

JBoss Application Server (and Portal in my case) Shutdown on Fedora and Red Hat

The “$JBOSS_HOME/bin/jboss_init_redhat.sh stop” which sets up the environment and does a “$JBOSS_HOME/bin/shutdown.sh -S” was not working in my environment. After MUCH work, I determined it was because my system is behind a firewall, and the shutdown command was attempting to communicate through it. When I opened ports 1098 and 1099 on the firewall, things got further, but when I watched the packets, I was getting “checksum” errors. Strange.

Anyway, this is the entry which saved me

http://kbase.redhat.com/faq/FAQ_107_9629.shtm

It explains how to setup the JMX invoker so that it works on localhost. That is what did it for me. Be careful though when using it as there is a missing “” at the end of last example under point 3. I did flag that back to the kbase people so that it might be fixed as of your reading of this.

Please read and heed the references near the end of the kbase article cited above about securing your JBoss server. When you do this, i.e. SecureTheInvokers, you will need to add login parameters after the -S in the shutdown.

There is some indication I may need other ports open on my firewall.
http://wiki.jboss.org/wiki/Wiki.jsp?page=UsingJBossBehindAFirewall

We’ll see. Meanwhile, if you are having shutdown problems, which I have seen many posts indicating people have, see the RedHat Kbase post above.