java – 使用SSH的Apache Felix shell

前端之家收集整理的这篇文章主要介绍了java – 使用SSH的Apache Felix shell前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我对如何使用Apache Felix和SSH感兴趣?我想使用SSH从远程计算机访问Felix shell.我知道有一个telnet支持,但它太不安全了.有什么解决方案吗?

解决方法

是的,有一个,如 here所述(该指南相对于eclipse的昼夜平分点但无关紧要)使用 gogo shell,apache mina sshd服务器和三个 equinox console bundles(用于ssh身份验证的核心ssh插件jaas插件)的组合,您将能够连接到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控制台捆绑包: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

here所述,您还需要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版本from here扩展附加软件包部分:

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

您还需要supportability bundle from here(最后一个版本是2011年).

原文链接:https://www.f2er.com/java/129335.html

猜你在找的Java相关文章