当前位置: 首页 > 工具软件 > Apache Celix > 使用案例 >

java 调用felix_java – 使用SSH的Apache Felix shell

景子安
2023-12-01

是的,有一个,如

@L_502_1@所述(该指南相对于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=

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扩展附加软件包部分:

 类似资料: