Member since
01-06-2018
3
Posts
0
Kudos Received
0
Solutions
01-12-2018
06:25 PM
@j van Arendonk Heya! Looks like there's a bit of a mixup! You are SSH'd into the "wrong" sandbox. The VM that you set up is actually a wrapper around the "real" sandbox. See how the hostname of the machine you are SSH'd into is "sandbox-host"? You are SSH'd into the VM, whereas you want to SSH into the sandbox within the VM. There are a few different ways of doing that, feel free to take your pick: Using SSH (notice that the port needs to be 2222): For VirtualBox: ssh -p 2222 root@localhost For VMWare: ssh -p 2222 root@<the-ip-of-your-vm> Using the browser: with the sandbox running, open a browser to http://localhost:4200 You'll know you are successfully SSH'd into the sandbox when the prompt you see is "[root@sandbox /]#" (notice there is no "-host"). Hope that helps! Let us know how it goes! 🙂
... View more