Again, VBOX may not be relevant, and your problem may be completely unrelated, but FYI the emulated card that works in VBOX is Intel/PRO 1000 MT Server (8254EM).
I looked at this some more. A couple of things are clearish:
the last couple of things in the log are not necessarily related to the freeze. A lot of kernel loading and hardware booting is backgrounded, so some backgrounded module could fail at any time.
that said, on my vbox system, there is both network stuff and disk mounting gong on just after the point where your system seems to freeze.
So we are no further ahead, just wanted to point out that debugging this shit is not easy!
I am running hass.io in a fresh ESXi 6.7.
I started off with with a default 64 bit Ubuntu install using the default image (ubuntu-18.04.1-live-server-amd64.iso)
I then ran this script : goo.gl/goR2HT
Which installed everything. It runs flawlessly for about a month now. I also connected a USB device (RFlink 433 MHz transceiver) to hass.io.
Hope this helps.
I would like to have ESXi 6.x with Ubuntu Server and Docker in it.
I would like to have Hassio installed in Ubuntu server (and most of its addons installed together) and Node-Red installed in another container, in the same Ubuntu Server, and let it work with Home Assistant node.
Yes. its possible and I do this. I decided have two ubuntu VMs with docker - one running hassio, and one with other non-HA related containers, but you could do it all in one VM if you prefer. Sometimes I need to make decision whether I will use a hassio addon or not. e.g. Unifi controller I decided to install in my other docker. Node red I decided to use the addon.
I tried in a ubuntu server and I was not able to connect from NodeRed the Home assistant server with error “Cannot GET /homeassistant/entities”, but I will try again
I’m afraid I cannot help on that specifically as I made the decision to use the node red hassio addon. I decided based on the fact it installs the HA nodered stuff, syncs users etc. i.e. added value over rolling my own. Also I will use NR only for HA.
I confirm the error, I’ve tried all the node available for Home Assistant (one at a time), and they all give me an error when I define the HA Server using the IP address and the API key (or Long Lived Access Token).
Anyone who is using this configuration, two different containers, one for HA (or HASSIO) and one for Node-Red?
node red is just another MQTT connection to the broker. If you log on via ssh to the docker host and type ‘docker container ls’ you will see all running containers along with their port forwardings. For MQTT I guess you will see ‘0.0.0.0:1883-1884->1883-1884/tcp’ which basically says translate incoming port 1883 to to the container’s ip and port 1883. So basically a 1 to 1 mapping.
You should then be able to make a MQTT connection to the ip of the docker host on port 1883.
If you type ‘docker exec -it nodered /bin/bash’ or ‘docker exec -it nodered /bin/sh’ (replace nodered with the actual container name) you will get a shell inside the docker container. You could try to telnet to the docker host on port 1883, which is basically a test from the exact same place like nodered does.
HTH
telnet or netcat are not found within the container.
I’m using Portainer as container management, and I can see that both Node-RED and Hassio are in the same “bridge” network.
I’ve tried also to install via “apt-get install telnet” but, I get also nothing to install…
I’ve tried using the internal network address, but no success.
I think I will try to open a more specific thread (after searching more deeply).