Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Panel
bgColor#000000

No Format
nopaneltrue
 ____                  _          __  __ _
/ ___|  ___ _ ____   _(_) ___ ___|  \/  (_)_  __
\___ \ / _ \ '__\ \ / / |/ __/ _ \ |\/| | \ \/ /
 ___) |  __/ |   \ V /| | (_|  __/ |  | | |>  <
|____/ \___|_|    \_/ |_|\___\___|_|  |_|_/_/\_\
No Format
nopaneltrue
 ServiceMix Kernel (1.1.0)

Type 'help' for more information.
--------------------------------------------------------------------------------------------------------------------------------
servicemix>smx@root:/>

You can now run your first command. Simply enter help in the console followed by a carriage return.

Panel
bgColor#000000

No Format
nopaneltrue
servicemix>smx@root:/> help
Available commands:
  about     Display information about the current GShell application.
  help      Display help for the current context.
  exit      Exit the current shell.
  echo      Print arguments to standard output.
  clear     Clear the terminal screen.
  source    Read and execute commands from a file in the current shell environment.
  set       Set a variable or property.
  unset     Unset a variable or property.
  alias     Define an alias.
  unalias   Undefine an alias.
  history   Display history.
  info      Display JVM informations about the current application.
  quit      Link to: exit
  ssh       Connect to a SSH server.
  sshd      Start a SSH server.
  exec      Execute system processes.
  java      Execute a Java standard application.
  sleep     Sleep for a bit then wake up.
  date      Displays the current time and date.
  edit      Edit a file with an external editor.
  find      Find files in a hierarchy.
  hostname  Displays the name of the current host.
  printf    Print formatted output.
  cat       Displays the contents of a file.
  grep      Displays lines matching a pattern.
  print     Link to: echo
  cd        Changes the current directory.
  pwd       Displays the current directory.
  ls        List the contents of a file or directory.
  cp        Copies a file or directory.
  rm        Remove a file or directory.
  fileinfo  Displays information about a file.
  touch     Sets the last-modified time of a file.
  dir       Link to: ls
  copy      Link to: cp
  del       Link to: rm
  osgi      Command group: osgi
  log       Command group: log
  admin     Command group: admin
  packages  Command group: packages
  config    Command group: config
  features  Command group: features

...

  1. Launching SMX4 can result in a deadlock in Felix during module dependency resolution. This is often a result of sending a SIGINT (control-C) to the process when it will not cleanly exit. This can corrupt the caches and cause startup problems in the very next launch. It is fixed by emptying the component cache:
    Code Block
    rm -rf data/cache/*
    

Stopping ServiceMix Kernel

To stop ServiceMix Kernel from the console, run the following command:

Code Block

exit

Summary

This document showed you how simple it is to have Apache ServiceMix Kernel up and running. The overall time for getting the server running should be less than five minutes if you have the prerequisite (Java 1.5) already installed. Additionally, this article also showed you how to deploy and test a simple Camel application in less than five minutes.

...