Versions Compared

Key

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

...

  • 7 MB of free disk space for the Apache ServiceMix Runtime 0x.1 y binary distribution.
  • 2 MB of free disk space for the Apache ServiceMix Runtime 0x.1 y source or developer's distributions respectively around 3 MB for SVN checkout. The Maven build requires roughly 35 MB disk space and for the dependencies Maven downloads during building further 50 MB are required. As a lot of small files are produced, the exact space demands depend greatly on your cluster utilisation ratio.

...

  • Java Developer Kit (JDK) 1.5.x or greater (http://java.sun.com/).
  • The JAVA_HOME environment variable must be set to the directory where the JDK is installed, e.g., c:\Program Files\jdk.1.5.0_06. To accomplish that, press Windows key and Break key together, switch to "Advanced" tab and click on "Environment Variables". Here, check for the variable and, if necessary, add it.
  • Apache Maven 2.0.4 7 (http://maven.apache.org/download.html).

...

  1. Download the ServiceMix gzip file to the Unix machine, either using a browser or using a tool, i.e., wget, scp, ftp, etc.
    • If the Unix machine has a browser:
      1. Navigate to http://servicemix.apache.org.
      2. Click the "Download" link in the navigation pane (the left pane).
      3. Click the "ServiceMix Runtime x.y 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 binary Unix distribution, the filename will be similar to: apache-servicemix-runtime-x.y.tar.gz.
    • OR

...

    • , if the Unix machine does NOT have a browser, tools such as wget, scp, or ftp can be used to download the ServiceMix distribution.

...

    • It is beyond the scope of this document to explain the use of those tools. For convenience an example is provided below using

...

    • a Windows machine (that has a browser) and a Unix machine with "wget" installed on it.

...

    • NOTE: There are several alternative ways to perform this type of installation.
      1. Obtain the link to the ServiceMix distribution file. On the Windows machine with a browser, navigate to servicemix.apache.org.
      2. Click the "Download" link in the left navigation pane.
      3. Click the "ServiceMix Runtime x.y Release" link under the "Latest Releases" section. This brings up a new page.
      4. Under the "Download Here" section, roll-over the desired distribution (if necessary, scroll down to see the "Download Here" section). For a binary Unix distribution the filename will be similar to: apache-servicemix-runtime-x.y.tar.gz.
      5. Right-click on the distribution name and "Copy Shortcut."
      6. On the Unix machine, change to the directory in which ServiceMix will be installed, e.g., /usr/local.
      7. Download the ServiceMix distribution to the Unix machine using the "wget" tool. For example, type "wget" followed by the saved shortcut:
        No Format
        
        wget http://www.apache.org/dist/servicemix/servicemix-4/x.y/apache-servicemix-runtime-x.y.tar.gz
        
  1. Extract the files from the gzip file into a directory of your choice. For example:
    Code Block
    gunzip apache-servicemix-runtime-x.y.tar.gz
    tar xvf apache-servicemix-runtime-x.y.tar
    
    Please remember the restrictions concerning illegal characters in Java paths, e.g. !, % etc.
  2. Proceed to the #Starting ServiceMix section of this document.
  3. Following start-up, go to the #Testing the Installation section.

...

  1. From a browser, navigate to http://servicemix.apache.servicemix.org.
  2. Click the "Download" link in the navigation pane (the left pane).
  3. Click the "ServiceMix Runtime x.y 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: apache-servicemix-runtime-x.y-src.tar.gz.
  5. Extract the files from the ZIP file into a directory of your choice. For example:
    Code Block
    gunzip apache-servicemix-runtime-x.y-src.tar.gz
    tar xvf apache-servicemix-runtime-x.y-src.tar
    
    Please remember the restrictions concerning illegal characters in Java paths, e.g. !, % etc.
  6. Build ServiceMix using Maven 2.0.7 or greater and Java 5:
    Code Block
    The preferred method of building ServiceMix is the following:
    cd [servicemix_install_dir]/src
     where [servicemix_install_dir] is the directory in which ServiceMix was installed.
    mvn
    
  7. Uncompress the distribution that has just been created
    Code Block
    cd [servicemix_install_dir]/assembly/target
    gunzip apache-servicemix-runtime-x.y.tar.gz
    tar xvf apache-servicemix-runtime-x.y.tar
    
  8. Proceed to the #Starting ServiceMix section of this document.
  9. Following start-up, go to the #Testing the Installation section.

...

  1. From a browser, navigate to http://servicemix.apache.org.
  2. Click the Download link in the navigation pane (the left pane).
  3. Click the "Current development SNAPSHOT release" link.
  4. Select the version of ServiceMix to download (you may have to scroll down to see the ServiceMix snapshots). The filename will be similar to: apache-servicemix-runtime-x.y-tar.gz or apache-servicemix-runtime-x.y-src.tar.gz.
  5. Extract the files from the gzip file into a directory of your choice. For example:
    Code Block
    For a binary developer's snapshot:
     gunzip apache-servicemix-runtime-x.y.tar.gz
     tar xvf apache-servicemix-runtime-x.y.tar
    
    For a source developer's snapshot:
     gunzip apache-servicemix-runtime-x.y-src.tar.gz
     tar xvf apache-servicemix-runtime-x.y-src.tar
    
    Please remember the restrictions concerning illegal characters in Java paths, e.g. !, % etc.
  6. For a binary snapshot, proceed to the #Starting ServiceMix section of this document.
    If a source snapshot was downloaded perform steps 6 - 8 (building, uncompressing, starting) of the #Unix Source Installation procedure.
  7. Proceed to the #Testing the Installation section.

...

Code Block
cd [servicemix_install_dir]\src

and for the source distribution go to the target directory, for example:

...

Then type:

Code Block
bin\servicemix.bat

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.

...

Code Block
cd [servicemix_install_dir]/src

and for the source distribution go to the target directory, for example:

...