Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Introduction

This document describes how to install and configure ServiceMix 1.x.

Pre-Installation Requirements

Hardware:

  • 36 MB of disk space for the ServiceMix 1.x binary download.
  • 13 MB of disk space for the ServiceMix 1.x source download.

...

  • Java Developer Kit (JDK) of 1.4.x or greater
  • The JAVA_HOME environment variable must be set to the directory where the JDK is installed, e.g. c:\Program Files\jsdk.1.4.2-09.
  • Maven 1.0.2 or greater (needed when installing source or developer's releases).

Installation Procedure For Windows

Binary Installation:

This procedure explains how to download and install the binary distribution on a Windows system.

  1. In a browser, go to www.servicemix.org.
  2. Click on the Download link in the navigation pane (the left pane).
  3. From this page, click on the "ServiceMix 1.x" link under the "Latest Releases" section.
  4. From the list select the version to download. For a binary distribution the filename will be similar to:
    servicemix-x.x.x.zip.
  5. Extract the files from the zip file into a directory of your choice.
  6. Proceed to the #Starting ServiceMix section of this document.
  7. Following start-up, go to #Testing the Installation.

Source Installation:

This procedure explains how to download and install the source distribution on a Windows system.

  1. In a browser, go to www.servicemix.org.
  2. Click on the Download link in the left pane.
  3. From this page, click on link in the "Latest Releases" section.
  4. Scroll down to select the version to download. For a binary distribution the filename will be similar to:
    servicemix-x.x.x-src.zip.
  5. Extract the files from the zip file into a directory of your choice.
  6. Anchor
    building source
    building source
    Change into the ServiceMix directory and build it.
    Code Block
    The preferred method of building ServiceMix is the following:
    cd \[servicemix_install_dir] 
      where [servicemix_install_dir] is the directory in which ServiceMix was installed.
    maven clean test
    
    If the above build fails on some tests, do this:
    cd \[servicemix_install_dir]
    maven m:clean
    maven -Dmaven.test.skip=true
    
    
  7. Start servicemix from the target directory:
    Code Block
    cd \[servicemix_install_dir]\target\servicemix-1.0\bin\servicemix-1.0\bin
    servicemix
    
  8. Proceed to #Testing the Installation section.

Developer's Releases:

This procedure explains how to download and install the latest developer's snapshot.

...