Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EIG:Install into Apache Karaf"

Line 1: Line 1:
 
==Introduction==
 
==Introduction==
  
ECFs Remote Services/Remote Service Admin implementation may be used on any OSGi R4.3+ compatible Framework Implementation.  Starting with ECF 3.8.0 we will provide the [http://karaf.apache.org/ Apache Karaf] provisioning metadata to allow ECF RS/RSA components to be easily installed into a Karaf server.
+
ECFs Remote Services/Remote Service Admin implementation may be used on any OSGi R4.3+ compatible Framework Implementation.  ECF will provide the [http://karaf.apache.org/ Apache Karaf] features to allow ECF RS/RSA components to be easily installed into a Karaf-based server.
  
==Installing ECF Remote Services SDK into Karaf==
+
==Installing ECF Remote Services SDK==
  
 
*[http://karaf.apache.org/index/community/download.html Download] and [http://karaf.apache.org/manual/latest/quick-start.html Install] Karaf v3.x or v4.x.  See [http://www.liquid-reality.de/display/liquid/2011/02/15/Karaf+Tutorial+Part+1+-+Installation+and+First+application here] for a Karaf install tutorial.
 
*[http://karaf.apache.org/index/community/download.html Download] and [http://karaf.apache.org/manual/latest/quick-start.html Install] Karaf v3.x or v4.x.  See [http://www.liquid-reality.de/display/liquid/2011/02/15/Karaf+Tutorial+Part+1+-+Installation+and+First+application here] for a Karaf install tutorial.

Revision as of 14:18, 11 August 2015

Introduction

ECFs Remote Services/Remote Service Admin implementation may be used on any OSGi R4.3+ compatible Framework Implementation. ECF will provide the Apache Karaf features to allow ECF RS/RSA components to be easily installed into a Karaf-based server.

Installing ECF Remote Services SDK

Karaf 3.x

Requirements: Karaf 3.x requires Java 1.7 (Java 1.8 is not supported in Karaf 3.x).

In the instructions below, use the following for the <repo url>

<repo url>: http://download.eclipse.org/rt/ecf/latest/site.p2/karaf-features.xml

Karaf 4.x

requirements: Karaf 4.x can use either Java 1.7 or 1.8.

1.7 <repo url>: http://download.eclipse.org/rt/ecf/latest/site.p2/karaf4-features.xml

1.8 <repo url>: http://download.eclipse.org/rt/ecf/latest/site.p2/karaf4-j8-features.xml

ECF Remote Services SDK Install

Via Command Console

  • Enter: feature:repo-add <appropriate repo url from above>

Via Webconsole

  • If you haven't already done so, install the Karaf webconsole
  • Add the ECF Repository
    • From the Webconsole Main menu choose Main->Features
    • Add the appropriate <repo url> from above to in the text box, and select Add URL button

Karafinst1.png

The available ECF's features will then be shown below (e.g. ecf-remoteservices-sdk)

Karafinst2.png

Install the ECF SDK feature

Via Command Console

  • Enter: feature:install -v ecf-remoteservices-sdk

Via Webconsole

  • Click on the arrow for the ecf-remoteservices-sdk feature/row underneath the Actions column to install.
  • When install is complete, the bundles list will have all ECF bundles active

Karafinst3.png

The ECF RS SDK is installed and running in Karaf.

To export an example remote service, see tutorial here.

Back to the top