Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 1 | /*
|
| 2 | * Licensed to the Apache Software Foundation (ASF) under one or more
|
| 3 | * contributor license agreements. See the NOTICE file distributed with
|
| 4 | * this work for additional information regarding copyright ownership.
|
| 5 | * The ASF licenses this file to You under the Apache License, Version 2.0
|
| 6 | * (the "License"); you may not use this file except in compliance with
|
| 7 | * the License. You may obtain a copy of the License at
|
| 8 | *
|
| 9 | * http://www.apache.org/licenses/LICENSE-2.0
|
| 10 | *
|
| 11 | * Unless required by applicable law or agreed to in writing, software
|
| 12 | * distributed under the License is distributed on an "AS IS" BASIS,
|
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 14 | * See the License for the specific language governing permissions and
|
| 15 | * limitations under the License.
|
| 16 | */
|
| 17 |
|
Guillaume Nodet | 1becb5b | 2009-05-04 07:56:47 +0000 | [diff] [blame] | 18 | Welcome to Apache Felix Karaf
|
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 19 | ====================================
|
Guillaume Nodet | 1becb5b | 2009-05-04 07:56:47 +0000 | [diff] [blame] | 20 | Apache Felix Karaf is a small OSGi based kernel which provides a
|
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 21 | lightweight container onto which various bundles can be deployed.
|
| 22 |
|
| 23 | The following features are included:
|
Guillaume Nodet | 1becb5b | 2009-05-04 07:56:47 +0000 | [diff] [blame] | 24 | * Hot deployment: Karaf supports hot deployment of OSGi bundles by monitoring
|
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 25 | jar files inside the [home]/deploy directory. Each time a jar is copied in this folder,
|
| 26 | it will be installed inside the runtime. You can then update or delete it and changes will
|
| 27 | be handled automatically. In addition, the Kernel also supports exploded bundles and custom
|
| 28 | deployers (a spring one is included by default).
|
| 29 | * Dynamic configuration: Services are usually configured through the ConfigurationAdmin OSGi
|
Guillaume Nodet | 1becb5b | 2009-05-04 07:56:47 +0000 | [diff] [blame] | 30 | service. Such configuration can be defined in Karf using property files inside
|
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 31 | the [home]/etc directory. These configurations are monitored and changes on the properties
|
| 32 | files will be propagated to the services.
|
Guillaume Nodet | 1becb5b | 2009-05-04 07:56:47 +0000 | [diff] [blame] | 33 | * Logging System: using a centralized logging back end supported by Log4J, Karaf
|
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 34 | supports a number of different APIs (JDK 1.4, JCL, SLF4J, Avalon, Tomcat, OSGi)
|
| 35 | * Provisioning: Provisioning of libraries or applications can be done through a number of
|
| 36 | different ways, by which they will be downloaded locally, installed and started.
|
Guillaume Nodet | 1becb5b | 2009-05-04 07:56:47 +0000 | [diff] [blame] | 37 | * Native OS integration: Karaf can be integrated into your own Operating System as
|
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 38 | a service so that the lifecycle will be bound to your Operating System.
|
Guillaume Nodet | 1becb5b | 2009-05-04 07:56:47 +0000 | [diff] [blame] | 39 | * Extensible Shell console: Karaf features a nice text console where you can manage the
|
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 40 | services, install new applications or libraries and manage their state. This shell is easily
|
| 41 | extensible by deploying new commands dynamically along with new features or applications.
|
| 42 | * Remote access: use any SSH client to connect to the kernel and issue commands in the console
|
| 43 | * Security framework based on JAAS
|
Guillaume Nodet | 1becb5b | 2009-05-04 07:56:47 +0000 | [diff] [blame] | 44 | * Managing instances: Karaf provides simple commands for managing instances of Karaf.
|
| 45 | You can easily create, delete, start and stop instances of Karaf through the console.
|
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 46 |
|
| 47 | Getting Started
|
| 48 | ===============
|
Guillaume Nodet | 1becb5b | 2009-05-04 07:56:47 +0000 | [diff] [blame] | 49 | For an Apache Felix Karaf source distribution, please read
|
| 50 | BUILDING.txt for instructions on building Apache Felix Karaf.
|
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 51 |
|
Guillaume Nodet | 1becb5b | 2009-05-04 07:56:47 +0000 | [diff] [blame] | 52 | For an Apache Felix Karaf binary distribution, please read
|
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 53 | RELEASE-NOTES.txt for installation instructions and list of supported
|
| 54 | and unsupported features.
|
| 55 |
|
| 56 | Alternatively, you can also find out how to get started here:
|
Guillaume Nodet | 1becb5b | 2009-05-04 07:56:47 +0000 | [diff] [blame] | 57 | http://felix.apache.org/site/apache-felix-karaf.html
|
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 58 |
|
| 59 | If you need more help try talking to us on our mailing lists
|
Guillaume Nodet | 1becb5b | 2009-05-04 07:56:47 +0000 | [diff] [blame] | 60 | http://felix.apache.org/site/mailinglists.html
|
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 61 |
|
Guillaume Nodet | 1becb5b | 2009-05-04 07:56:47 +0000 | [diff] [blame] | 62 | If you find any issues with Apache Felix Karaf, please submit reports
|
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 63 | with JIRA here:
|
Guillaume Nodet | 1becb5b | 2009-05-04 07:56:47 +0000 | [diff] [blame] | 64 | http://issues.apache.org/jira/browse/FELIX
|
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 65 |
|
| 66 | We welcome contributions, and encourage you to get involved in the
|
Guillaume Nodet | 1becb5b | 2009-05-04 07:56:47 +0000 | [diff] [blame] | 67 | Felix community. If you'd like to learn more about how you can
|
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 68 | contribute, please see:
|
Guillaume Nodet | 1becb5b | 2009-05-04 07:56:47 +0000 | [diff] [blame] | 69 | http://felix.apache.org/site/contributing.html
|
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 70 |
|
Guillaume Nodet | 1becb5b | 2009-05-04 07:56:47 +0000 | [diff] [blame] | 71 | Many thanks for using Apache Felix Karaf.
|
Guillaume Nodet | 05fac96 | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 72 |
|
| 73 |
|
Guillaume Nodet | 1becb5b | 2009-05-04 07:56:47 +0000 | [diff] [blame] | 74 | The Felix Team
|
| 75 |
|