[Console] Replace "Karaf console" by simply "console" (#217)

* Replaced "Karaf console" by simply "console"

Signed-off-by: Kai Kreuzer <kai@openhab.org>

* also changed menu entry

Signed-off-by: Kai Kreuzer <kai@openhab.org>

* some missed changes...

Signed-off-by: Kai Kreuzer <kai@openhab.org>

* moved sentences to single lines

Signed-off-by: Kai Kreuzer <kai@openhab.org>
pull/231/head
Kai Kreuzer 2017-01-18 17:50:32 +01:00 committed by Thomas Dietrich
parent ef3efa803d
commit 00db391e8b
2 changed files with 35 additions and 26 deletions

View File

@ -117,7 +117,7 @@
<ul>
<li><a href="{{docu}}/administration/index.html">Overview</a></li>
<hr />
<li><a href="{{docu}}/administration/console.html">Karaf Console</a></li>
<li><a href="{{docu}}/administration/console.html">Console</a></li>
<li><a href="{{docu}}/administration/runtime.html">Runtime Commands</a></li>
<li><a href="{{docu}}/administration/bundles.html">Bundle Management</a></li>
<li><a href="{{docu}}/administration/logging.html">Logging</a></li>

View File

@ -1,34 +1,37 @@
---
layout: documentation
title: Karaf Console
title: The Console
---
{% include base.html %}
# Karaf Console
# The Console
The Karaf console offers the option to:
The console offers the option to:
* monitor the [log](logging.html#karaf-console) in realtime
* manage [bundles](bundles.html)
* [runtime commands](runtime.html)
# Accessing the Console
## Accessing the Console
Accessing the Karaf console depends on the start mode of openHAB. The manually start using shell/batch script ends directly in the Karaf console.
Accessing the console depends on the start mode of openHAB.
The manually start using shell/batch script ends directly in the console.
If openHAB runs a service, the console can be accessed using ssh to the openHAB host on port 8101. The default Username/Password is **openhab/habopen**. Be aware, that the first connection attempt may take a few seconds longer.
If openHAB runs a service, the console can be accessed using ssh to the openHAB host on port 8101.
The default username/password is **openhab/habopen**.
Be aware, that the first connection attempt may take a few seconds longer.
```
ssh openhab@localhost -p 8101
Password authentication
Password:
Password:
__ _____ ____
____ ____ ___ ____ / / / / | / __ )
__ _____ ____
____ ____ ___ ____ / / / / | / __ )
/ __ \/ __ \/ _ \/ __ \/ /_/ / /| | / __ |
/ /_/ / /_/ / __/ / / / __ / ___ |/ /_/ /
\____/ .___/\___/_/ /_/_/ /_/_/ |_/_____/
/ /_/ / /_/ / __/ / / / __ / ___ |/ /_/ /
\____/ .___/\___/_/ /_/_/ /_/_/ |_/_____/
/_/ 2.0.0-SNAPSHOT
Hit '<tab>' for a list of available commands
@ -38,7 +41,7 @@ Hit '<ctrl-d>' or type 'system:shutdown' or 'logout' to shutdown openHAB.
openhab>
```
# Using the Console
## Using the Console
**Help** is listing all available commands:
@ -56,20 +59,22 @@ openhab> help bundle:stop
...
```
The console also supports auto-completion during input. Auto-Completion proposes possible commands based on the current input and is triggered by the **tab** key. So for example entering _bun_ and pressing the tab key will result in:
The console also supports auto-completion during input.
Auto-completion proposes possible commands based on the current input and is triggered by the **tab** key.
So for example entering _bun_ and pressing the tab key will result in:
```
```
openhab> bundle
bundle bundle:capabilities bundle:classes bundle:diag bundle:dynamic-import
bundle:find-class bundle:headers bundle:id bundle:info bundle:install
bundle:list bundle:load-test bundle:refresh bundle:requirements bundle:resolve
bundle:restart bundle:services bundle:start bundle:start-level bundle:stop
bundle:tree-show bundle:uninstall bundle:update bundle:watch
```
bundle bundle:capabilities bundle:classes bundle:diag bundle:dynamic-import
bundle:find-class bundle:headers bundle:id bundle:info bundle:install
bundle:list bundle:load-test bundle:refresh bundle:requirements bundle:resolve
bundle:restart bundle:services bundle:start bundle:start-level bundle:stop
bundle:tree-show bundle:uninstall bundle:update bundle:watch
```
Another useful feature the **\| (pipe)** and **grep** functionality which filters long output lists:
```
```
openhab> bundle:list | grep openHAB
164 | Active | 90 | 2.0.0.201607210102 | openHAB Core
165 | Active | 80 | 2.0.0.201607210102 | openHAB Karaf Integration
@ -77,17 +82,21 @@ openhab> bundle:list | grep openHAB
196 | Active | 80 | 2.0.0.201607210102 | openHAB REST Documentation
```
The Karaf session is ended by using the logout command:
The session is ended by using the logout command:
```
openhab> logout
```
# Bind Console to all Interfaces
## Bind Console to all Interfaces
By default openHAB binds its shell to localhost only due to obvious security reasons. If you are on a local network or you are fully aware of all risks of exposing your system to the public, you can change the bind address in the configuration file `org.apache.karaf.shell.cfg` under the openHAB `<userdata>/etc` path. Replace the `sshHost` IP "127.0.0.1" by "0.0.0.0" to bind to all available network interfaces. Please be aware, that the Karaf console will now be accessible from all devices and is only secured by the password defined in `users.properties` (same path). You should thereby change the default password.
By default openHAB binds its shell to localhost only due to obvious security reasons.
If you are on a local network or you are fully aware of all risks of exposing your system to the public, you can change the bind address in the configuration file `org.apache.karaf.shell.cfg` under the openHAB `<userdata>/etc` path.
Replace the `sshHost` IP "127.0.0.1" by "0.0.0.0" to bind to all available network interfaces.
Please be aware, that the console will now be accessible from all devices and is only secured by the password defined in `users.properties` (same path).
You should thereby change the default password.
The above can be accomplished by the following Linux shell command (on an apt/deb-based installation, you may need to adapt the path):
The above can be accomplished by the following Linux shell command (on an apt/deb-based installation, you might need to adapt the path for other installations):
```
sudo sed -i -e "s/sshHost = 127.0.0.1/sshHost = 0.0.0.0/g" /var/lib/openhab2/etc/org.apache.karaf.shell.cfg