领先一步
VMware 提供培训和认证,以加速您的进步。
了解更多dm 服务器有一个新的命令行 shell。它目前与现有的 Equinox shell 一起提供,并将替换 2.0 版本中的 Equinox shell。与 Equinox shell 相比,改进包括基本的 Tab 键自动完成和命令历史记录。
dm Shell 可在本地和通过 ssh 远程访问。当通过使用`./startup.sh -shell`选项启动服务器在本地使用时,一旦 dm Kernel 启动,它将接管控制台输出。控制台输出仍然可以在事件日志中查看。无论哪种方式,首先显示的是 ASCII 艺术启动画面,然后是命令提示符`:>`。
[13:36:54 ~]: ssh -p 2402 admin@localhost
admin@localhost's password:
@@@ ***
@@@ ***** .__. .__. .__. .__.
@@@@ ****** __| | _____ _____.| |__ ____ | | | |
@@@@@@ **** / __ | / \ / ___/| | \ ./ __ \ | | | |
@@@@@ *** / /_/ || Y Y \ \___ \ | Y \\ ___/ | |__| |__
@@@ *** \______||__|_|__/ /_____/ |___|__/ \____/ |____/|____/
Type 'help' to see the available commands.
:>
远程访问 dm Shell 时需要密码,安全性由 JAAS 身份验证提供,与 dm 控制台的 id/密码相同。默认值为`admin/springsource`。这可以从`config`目录中的`com.springsource.kernel.users.properties`文件中配置。
进入 shell 后,键入`help`以查看可用命令的列表。如果命令输入了一半,只需按“Tab”键即可查看命令可能的完成列表,而无需返回并再次键入`help`。
从`bundles`命令开始,这将显示系统中的用户区域捆绑包。它将显示其状态、名称、版本以及它们是否由 Spring 驱动。除了一些用于管理用户区域的内核捆绑包及其服务外,用户安装的工件看不到任何内核。这使得它更加清晰,因为可见的系统捆绑包和服务要少得多。
:> bundles
Id State Name-Version
0 Active org.eclipse.osgi-3.5.1.R35x_v20090827
1 Active com.springsource.region.user-0.0.0
2 Resolved org.springframework.aop-3.0.0.CI-395
3 Resolved org.springframework.asm-3.0.0.CI-395
....
46 Active S com.springsource.server.admin.web-2.0.0.M5
47 Active com.springsource.javax.servlet.jsp.jstl-1.1.2
48 Active com.springsource.org.apache.taglibs.standard-1.1.2
49 Active org.springframework.context.support-3.0.0.CI-395
50 Active org.springframework.jdbc-3.0.0.CI-395
51 Active org.springframework.js-2.0.8.RELEASE
52 Active org.springframework.transaction-3.0.0.CI-395
53 Active org.springframework.web.servlet-3.0.0.CI-395
54 Active S com.springsource.server.repository.hosted-2.0.0.M5-com.springsource.server.repository.hosted.core-2.0.0.M5
55 Active com.springsource.server.repository.hosted-2.0.0.M5-com.springsource.server.repository.hosted.web-2.0.0.M5
56 Active com.springsource.server.repository.hosted-2.0.0.M5-com.springsource.server.repository.hosted-synthetic.context-2.0.0.M5
57 Active com.springsource.server.splash-2.0.0.M5
执行操作也很容易,例如安装捆绑包。键入`install file:/path.to.bundle.jar`。
:> install file:/Users/chrisfrost/Desktop/com.bar.import-1.0.0.jar
60 Installed com.bar.importer-1.0.0
捆绑包已安装,但是当我们尝试`start`它时出现错误。当尝试启动捆绑包时,显示捆绑包缺少必需的依赖项。
:> start 60
Error occured while starting bundle '[60] com.bar.importer-1.0.0' : The bundle could not be resolved. Reason: Missing Constraint: Import-Package: com.foo; version="[1.0.0,2.0.0)"
:>
使用`diag`命令可以随时轻松获取此信息。当尝试启动捆绑包时,显示的信息与日志文件中显示的信息相同。
:> diag 60
Resolution report for bundel 60 Installed com.bar.importer-1.0.0
Cannot resolve: com.bar.importer
Resolver report:
An Import-Package could not be resolved. Caused missing constraint <Import-Package: com.foo; version="[1.0.0,2.0.0)"> in bundle <com.bar.importer_1.0.0>
:>
我们可以安装一个满足依赖关系的捆绑包,然后再次`start`我们原来的捆绑包,这次一切顺利。
这是一个非常简单的捆绑包,可以通过键入`bundle 60`来详细查看。请记住有 Tab 键自动完成,所以只需`bu`Tab`60`即可完成命令。这里显示了此捆绑包导入和导出的所有包。捆绑包名称前的`S`表示该捆绑包具有 Spring 上下文。
:> bundle 60
Bundle report for 60 Active S com.bar.importer-1.0.0
Imported packages:
com.foo-[1.0.0, 2.0.0)
Exported packages:
:> bundle 61
Bundle report for 61 Resolved com.foo.exporter-1.0.0
Imported packages:
Exported packages:
com.foo-1.0.0
:>
我们可以看到它现在正在导入之前导致错误的包。显示的第二个捆绑包是导出该包的捆绑包。
其他一些可用命令包括`config`和`configs`,它们将显示已安装的配置及其属性。
:> configs
Pid
com.springsource.kernel
com.springsource.repository
com.springsource.server.repository.hosted
com.springsource.osgi.medic
com.springsource.kernel.users
com.springsource.kernel.jmxremote.access
:> config com.springsource.osgi.medic
Pid = com.springsource.osgi.medic
Factory pid = null
Bundle location = null
dump.root.directory = serviceability/dump
log.wrapSysErr = true
log.wrapSysOut = true
service.pid = com.springsource.osgi.medic
:>
显示了可用配置的列表以及 medic 配置的属性。完成 dm Shell 后,有两种方法可以离开它。`exit`将简单地退出 shell,而`shutdown`将调用服务器上的 shutdown,shell 会话将作为 shutdown 的一部分终止。
:> exit
Goodbye.
Connection to localhost closed.
[14:24:03 ~]:
在 2.0 版本发布之前,我们正在对 shell 进行更多工作,届时将会有完整的用户指南,而且我怀疑还会有另一个博客或屏幕录像。因此,如果您希望看到一些**杀手级**功能,请大声说出来。