From 2aa6796ce9bcc5c1fd5d654a20e7a3aff3448b19 Mon Sep 17 00:00:00 2001 From: Richard Koshak Date: Fri, 25 Dec 2020 07:53:40 -0700 Subject: [PATCH] Updated paths to remove openhab2 (#1375) Signed-off-by: Rich Koshak (github: rkoshak) --- administration/console.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/administration/console.md b/administration/console.md index a7aebbb179836..ce6a620a74719 100644 --- a/administration/console.md +++ b/administration/console.md @@ -139,10 +139,10 @@ The pertinent files controlling console settings are stored under `$OPENHAB_USER | `org.apache.karaf.shell.cfg` | Controls most console settings | | `users.properties` | Stores console password | -The exact locations of these files will vary based on your platform and installation method, e.g. `/var/lib/openhab2/etc/` or `openhab2/userdata/etc/`. +The exact locations of these files will vary based on your platform and installation method, e.g. `/var/lib/openhab/etc/` or `openhab/userdata/etc/`. Be aware that the these files may get overwritten when upgrading openHAB. -To add custom parameters or overwrite the default values, you can change the configuration file `runtime.cfg` which can be found in the `$OPENHAB_CONF/services` directory, e.g. `/etc/openhab2/services/runtime.cfg`. +To add custom parameters or overwrite the default values, you can change the configuration file `runtime.cfg` which can be found in the `$OPENHAB_CONF/services` directory, e.g. `/etc/openhab/services/runtime.cfg`. ### Changing the Password @@ -154,7 +154,7 @@ Alternately, run the following Linux shell command, which will perform the repla Substitute `securePassword` with your desired password. ```shell -sudo sed -i -e "s/openhab = .*,/openhab = securePassword,/g" /var/lib/openhab2/etc/users.properties +sudo sed -i -e "s/openhab = .*,/openhab = securePassword,/g" /var/lib/openhab/etc/users.properties ``` Depending on your system, you may have to [change the directory](#console-settings-files-and-directories) at the end of the command. @@ -163,7 +163,7 @@ Please restart openHAB for the changes to take effect. The clear text password w ### Bind Console to All Interfaces The network interface configuration is defined in the file `org.apache.karaf.shell.cfg`, located in the `etc` directory as [mentioned above](#console-settings-files-and-directories). -As this file may get overwritten when upgrading openHAB, you can change this parameter in the `runtime.cfg` file which can be found in the `$OPENHAB_CONF/services` directory, e.g. `/etc/openhab2/services/runtime.cfg`. +As this file may get overwritten when upgrading openHAB, you can change this parameter in the `runtime.cfg` file which can be found in the `$OPENHAB_CONF/services` directory, e.g. `/etc/openhab/services/runtime.cfg`. The `sshHost` entry controls the interface address to bind to. `sshHost = 127.0.0.1` (localhost) is the default due to obvious security reasons. @@ -191,7 +191,7 @@ Substitute `1234` with your desired port number. Depending on your system, you may have to substitute [the directory](#console-settings-files-and-directories) at the end of the command. ```shell -sudo sed -i -e "s/sshPort = .*/sshPort = 1234/g" /var/lib/openhab2/etc/org.apache.karaf.shell.cfg +sudo sed -i -e "s/sshPort = .*/sshPort = 1234/g" /var/lib/openhab/etc/org.apache.karaf.shell.cfg ``` ----