Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: INS time and updated space requirements

...

  • 31 MB of free disk space for the ServiceMix 3.0.x binary distribution.
  • 8 MB of free disk space for the ServiceMix 3.0.x source or developer's distributions respectively around 25 MB for SVN checkout. The Maven build requires roughly 250 MB disk space and for the dependencies Maven downloads during building further 200 MB are required. As a lot of small files are produced, the exact space demands depend greatly on your cluster utilisation ratio.

Operating Systems:

  • Windows: Windows XP SP2, Windows 2000.
  • Unix: Ubuntu Linux, Powerdog Linux, MacOS, AIX, HP-UX, Solaris, any Unix platform that supports Java.

...

  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 apache-servicemix.x.x-src.tar.gz
    tar xvf apache-servicemix.x.x-src.tar
    
  6. Build ServiceMix using Maven 2.0.4 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.
    mvn -Dprofile=step1
    mvn -Dprofile=step2
    
    Both steps take around 10 to 15 minutes.
  7. Uncompress the distribution that has just been created
    Code Block
    cd [servicemix_install_dir]/apache-servicemix/target
    gunzip apache-servicemix-3.0-incubating.tar.gz
    tar xvf apache-servicemix-3.0-incubating.tar
    
  8. If the servicemix start-up script is not executable, change its permissions. For example:
    Code Block
    cd [servicemix_install_dir]/apache-servicemix/target/apache-servicemix-3.0-incubating/bin
    chmod 755 servicemix
    
  9. Start ServiceMix from the target directory, for example:
    Code Block
    cd [servicemix_install_dir]/apache-servicemix/target/apache-servicemix-3.0-incubating
    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.
  10. Proceed to #Testing the Installation section.

...