Versions Compared

Key

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

...

  1. Install the Equinox bundle if you don't have it pre-installed.
  2. Open config.properties file under Geronimo_Home/etc directory, which is the initial configuration parameters to start up a Karaf framework.
  3. Uncomment the line with *karaf.framework=felix and comment out the line with karaf.framework=equinox.
  4. Specify the location of Equinox bundle using the key karaf.framework.equinox. The following code snippet is the updated ((config.properteis)) file.
    Code Block
    java
    java
    titleconfig.properties
    
    ...
    #
    # Framework selection properties
    #
    # karaf.framework=felix
      karaf.framework=equinox
    
    karaf.framework.equinox=repository/org/eclipse/osgi/3.5.1.v20090827/osgi-3.5.1.v20090827.jar
    ...
    
  5. Save the file and restart the server.

...