• 安装Apache Felix OSGI Framework小记


        Felix是apache的开源OSGI服务框架,到 http://felix.apache.org/downloads.cgi 可以下载到最新的版本。

        解压后目录结构如下:

        felix-framework-4.2.1

            -bin

            -bundle

            -conf

            -doc

        bin目录下是felix.jar

        bundle下面的bundle会在启动时自动安装

        conf下面是配置文件

        1. 启动felix

             启动命令行,并定位到安装目录,

             执行 java -jar ./bin/felix.jar 这会使用默认的配置,如果需指定另一个配置文件,则要

             执行java -Dfelix.config.properties=file:./conf/config.properties -jar ./bin/felix.jar

             执行成功,我们会看到felix的 gogo已经可以使用,这是felix的shell.

         2.  执行lb可以列出当前的bundle的状态

              install file:./bundle/***.jar

              start bundleID

              这样就可以安装和启动一个bundle了

         3. 安装http服务和felix控制台bundle

              http://felix.apache.org/documentation/subprojects/apache-felix-http-service.html#installing   这是http的详细介绍

    • org.apache.felix.http.jetty - HTTP Service implementation that is embedding Jetty server.
    • org.apache.felix.http.whiteboard - Whiteboard implementation that uses any HTTP Service implementation.
    • org.apache.felix.http.bridge - HTTP Service implementation that uses the host applicaiton server (bridged mode). Must be used with proxy.
    • org.apache.felix.http.bundle - All in one bundle that includes all of the above.
    • org.apache.felix.http.proxy - Proxy that is needed inside WAR when deployed inside an application server.
           这里说只要org.apache.felix.http.bundle就可以了,我试了下,发现只安装这个仍然不行,还是要安装org.apache.felix.http.jetty
           安装了jetty后,localhost:8080才能访问
           在下载页面下载Web Console (all-in-one bundle) 并安装这个bundle,之后通过
           localhost:8080/system/console 就可以访问felix的控制台了。


  • 相关阅读:
    编译安装LAMP之php-5.4.13、xcache-2.0及使用ab命令实现压力测试
    编译安装LAMP之MySQL-5.5.28(通用二进制格式)
    编译安装LAMP之httpd-2.4.4
    建立LAMP平台
    MySQL初步,数据类型及SQL语句
    数据库及MySQL
    PHP相关概念及配置
    CSS:页面美化和布局控制
    HTML标签:表单标签
    web概念简述,HTML学习笔记
  • 原文地址:https://www.cnblogs.com/snake-hand/p/3143012.html
Copyright © 2020-2023  润新知