Last week I installed WebLogic and the AquaLogic Service Bus on a Mac. There is no Mac-download on the download page, but by using the HP-UX version everything works fine, you just have to add some command line parameters.
How to install WebLogic on a Mac is explained in this blog:
Running WebLogic Server 10g Release 3 on a Mac
Make sure you also read the comments on the blog when you get errors, they contain valuable information that’ll save you a lot of time.
Go to the Oracle download page and pick the HP-UX Itanium version. I picked the HP-UX version because it’s in fact a generic version.
Run the installer on the command line (don’t run the jar directly!):
java -Xmx1024m -jar -Dos.name=unix osb103_wls103_generic.jar
Since the WebLogic installer had some memory problems on a Mac I added the -Xmx1024m paramter. The os.name parameter is added to prevent the "Insufficient disk space!" error.
Follow the default installation instructions. When the screen "Choose Products and Components" appears I also included the Service Bus Examples, they might come in handy.
After installing the OSB you have to extend your domain with the Oracle Service Bus (or just create a new domain).
Start the Configuration Wizard ($BEA_HOME/wlserver_10.3/common/bin/config.sh) and pick Extend an existing WebLogic domain (assuming you already have a domain running)
Search for the directory where your domain is running (ie. $BEA_HOME/user_projects/domain/base_domain)
I chose to replace all components when asked for and picked the default choice at every wizard screen.
The changes you made to startWebLogic.sh (see the blog by Yusuke Yamamoto I mentioned earlier) also have to be reapplied.
When you start your domain (with startWebLogic.sh) you should be able to access the Service Bus Console on xebia.com/blog:7001/sbconsole
To check whether things are working I followed the first tutorial.
Sources
- Running WebLogic Server 10g Release 3 on a Mac
- Introduction to the BEA AquaLogic Service Bus Tutorials