New Openhabian Setup on Raspberry PI4 Model B / Questions

Hello everybody,

i actual set up a new openhabian installation on my new raspberry PI 4 model B.

I do that steps:

• Download the latest “openHABianPi” SD card image file (Note: the file is xz compressed)
• Write the image to your SD card (e.g. with Etcher, able to directly work with xz files)
• Insert the SD card into the Raspberry Pi, connect Ethernet (Wi-Fi supported) and power

and it works fine so far. (2.4.0 release build)
I can access the webpage via http://openhab:8080/

But i have 2 questions:

First question:

When i take a look to the Logviewer, the Dashboard starts twice with different ports.
Is that right or why do it start twice ?

       -2019-10-31 10:37:22.929 [INFO ] [.dashboard.internal.DashboardService] - Started Dashboard 
       at http://192.168.xxx.xx:8080

       - 2019-10-31 10:37:22.931 [INFO ] [.dashboard.internal.DashboardService] - Started 
       Dashboard at https://192.168.xxx.xx:8443

Second question:

I installed the optional Package NodeRed with openhabian-config. This works fine too.
But on the Openhab Dashboard there is no tile for node red.
Any ideas why it not appears at the Dahboard and what to do for creating a NodeRed tile ?

Many thanks in advance
Christian

This is fine. The first one opens the port for http (port 8080) and the second one opens the port for https (port 8434). The dashboard is only running once, this log just shows that it is listening for connections on both ports.

I don’t use NodeRed but I don’t know that you should expect to see NodeRed on the Dashboard. But you can add it by editing /etc/openhab2/services/dashboard.cfg. There are lots of posts. Here is one: (SOLVED) Edit dashboard.cfg

Ahhh, ok.
I did not see that “s” :slight_smile:
In my actual setup there ist only the http site in the log.

I couldn’t remember that i adjust the config manually at my actual environment.
I just copied the .cfg and there it is.

Many thanks for the fast informtions.