Versions Compared

Key

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

...

  1. From a browser, navigate to www.servicemix.org.
  2. Click the "Download" link in the navigation pane (the left pane).
  3. Click the "ServiceMix 3.x Release" link under the "Latest Releases" section. This brings up a new page.
  4. Under the "Download Here" section, select the desired distribution (if necessary, scroll down to see the "Download Here" section).
    For a source distribution, the filename will be similar to: servicemix-x.x-src.tar.gz.
  5. Extract the files from the ZIP file into a directory of your choice. For example:
    Code Block
    gunzip servicemix.x.x-src.tar.gz
    tar xvf servicemix.x.x-src.tar
    
  6. Build ServiceMix using Maven 1.0.2 or greater and Java 5:
    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 the following:
    cd [servicemix_install_dir]
    maven m:clean
    maven -Dmaven.test.skip=true
    
  7. If the servicemix start-up script is not executable, change its permissions. For example:
    Code Block
    cd [servicemix_install_dir]/servicemix-assembly/target/servicemix-3.x/bin/servicemix-3.x/bin
    chmod 755 servicemix
    
  8. Start ServiceMix from the target directory, for example:
    Code Block
    cd [servicemix_install_dir]/servicemix-assembly/target/servicemix-3.x/bin/servicemix-3.x
    bin/servicemix
    
    Note: working directories get created relative to the current directory. For the working directories to be created in the proper place, ServiceMix must be launched from its home/installation directory.
  9. Proceed to #Testing the Installation section.

...