使用SSH的Apache Felix shell

我感兴趣的是如何通过SSH使用Apache Felix? 我想使用SSH从远程计算机访问Felix shell。 我知道有一个telnet支持,但它太不安全了。 有没有解决方法?


是的,有一个,这里描述(该指南是相对于日食的春分,但它并不重要)使用gogo shell,apache mina sshd服务器和三个春分控制台捆绑(核心+ ssh插件+ jaas插件的sshd组合身份验证),您将能够连接到mina的ssh服务器,并且与OSGi相关的命令将由gogo shell执行。

你需要这些捆绑包:

  • GoGo Shell:org.apache.felix.gogo.command.jar,org.apache.felix.gogo.runtime.jar,org.apache.felix.gogo.shell.jar
  • Equinox控制台Bundles:org.eclipse.equinox.console.jar,org.eclipse.equinox.console.supportability.jar,org.eclipse.equinox.console.jaas.fragment.jar
  • Apache Mina:org.apache.mina.core.jar,org.apache.sshd.core.jar
  • 并记录slf4j-api.jar和slf4j-api_impl.jar
  • 如此处所述,您还需要在您的Felix配置文件中使用这些属性:

    osgi.console.enable.builtin=false 
    osgi.console.ssh=<port> 
    osgi.console.ssh.useDefaultSecureStorage=true 
    

    Equinox JAAS包将搜索org.eclipse.equinox.console.authentication.config文件,该文件将启用登录模块:

    equinox_console { 
        org.eclipse.equinox.console.jaas.SecureStorageLoginModule REQUIRED; 
    }; 
    

    我不太确定使用Felix在哪里搜索(我不确定这是用标准的OSGi方式完成的),但conf目录是一个很好的猜测。

    用户equinox / equinox已经存在,其他用户可以使用提供的控制台命令创建。

    编辑:对于equinox控制台/可支持性包,您可以从这里获得Mars版本,扩展部分附加包:

    org.eclipse.equinox.console_1.1.100.v20141023-1406.jar

    你还需要从这里获得的可支持性包(最后一个版本是2011年)。

    链接地址: http://www.djcxy.com/p/26853.html

    上一篇: Apache Felix shell with SSH

    下一篇: AngularJS programatically call filter from service (sort by custom filter)