我需要以非交互方式发出Karaf
shell命令,最好是从脚本中发出.更具体地说,我需要告诉Karaf功能:以自动方式安装一组功能.
# Attempt to install a feature in a way I could script bash> bin/karaf feature:install myFeature # Drops me into Karaf shell karaf> feature:uninstall myFeature Error executing command: Feature named 'myFeature' is not installed # Feature wasn't installed
使用bin / karaf,您可以通过登录提示启动Karaf,如果您想启动Karaf,那么您可以发出首先需要在服务器模式下启动Karaf的命令.为此使用bin / start shell脚本.现在,您可以使用bin / client或bin / shell命令以无头模式与Karaf通信.
原文链接:https://www.f2er.com/bash/384339.html例如:
./bin/client list START LEVEL 100,List Threshold: 50 ID | State | Lvl | Version | Name ---------------------------------------------------------------------------------- 72 | Active | 80 | 0 | mvn_org.ops4j.pax.web.samples_war_4.1.0-SNAPSHOT_war
这应该适用于所有版本的Karaf(可能不是2.2.x行;-))
如果您使用的版本是3.0.x或更高版本,则可能需要将用户添加到命令中.
./bin/client -u karaf list