4 Replies Latest reply on Jan 18, 2012 2:19 PM by alii44

    Upgrading Jboss 4.2.1 to 4.2.3

    alii44

      Hi, I'm a newbie to the community and to JBoss.  I currently have a test environment that is running one web app under WinXP, JVM 1.5, JBoss 4.2.1.  However, I need to upgrade to 4.2.3 because of a new version of the web app I received.  I've seen articles that say "unzip the files into a folder of your choice", which I've done, but I would expect there has to be more to it that that.  The web app is not working, but I don't know if it's because the upgrade didn't work.  When I think of upgrades, I think of updating current programs and libraries, which normally means the new version is installing "on top" of the older version, and not into a separate folder.  Can someone provide some guidance?  Not sure where to look or what to try.  Regards...

        • 1. Re: Upgrading Jboss 4.2.1 to 4.2.3
          peterj

          Typical upgrade steps:

           

          1) Download and install the new version of JBoss AS. Do not install in the same folder as the old version.

          2) Rebuild your app using the JARs fro mthe newer version of JBoss AS (since you are moving from 4.2.1 to 4.2.3 you might not need to do this, the JBoss team was much better at preserving compatibility among the 4.2.x versions that what they had done previously)

          3) Migrate any configuration settings from your old version of JBoss AS to the new version. Don't just copy the files, rather isolate the changes you made and reapply those changes.

          4) Deploy your app and keep your fingers crossed.

          5) Fix and issues with the deployment (you can post eexcpetion stack traces in the forums if you don't understand them)

           

          This also might help: http://www.coderanch.com/t/517946/JBoss/Migration-jboss

          • 2. Re: Upgrading Jboss 4.2.1 to 4.2.3
            alii44

            Hi Peter,

            For #1, does 'install' just mean unzipping the folders to a new root folder, such as c:\JBoss-4.2.3.GA?  Or is there an EXE that would perform an upgrade so that the new files are incorporated into the 4.2.1 folders?  That's still one of my hangups...

            Regards....

            • 3. Re: Upgrading Jboss 4.2.1 to 4.2.3
              peterj

              Yes, with JBoss AS, install means "unzip to a folder of yoru choice". There is no EXE, and there is no installation program that handles upgrades. Upgrades are always manual. The process I mentioned is the accepted best pratice.

              1 of 1 people found this helpful
              • 4. Re: Upgrading Jboss 4.2.1 to 4.2.3
                alii44

                Thanks for confirming Peter.