L M:
Hey all. So I’m stuck on a tutorial. I’m using Mac and docker and when I run minikube service hello-node the browser goes to the localhost page with a “page not found” message. When running the 192 IP address, it never loads. I’m given the following output. Anyone know a fix for this?
|-----------|------------|-------------|---------------------------|
| NAMESPACE | NAME | TARGET PORT | URL |
|-----------|------------|-------------|---------------------------|
| default | hello-node | 8080 | <http://192.168.49.2:30257> |
|-----------|------------|-------------|---------------------------|
🏃 Starting tunnel for service hello-node.
|-----------|------------|-------------|------------------------|
| NAMESPACE | NAME | TARGET PORT | URL |
|-----------|------------|-------------|------------------------|
| default | hello-node | | <http://127.0.0.1:52006> |
|-----------|------------|-------------|------------------------|
🎉 Opening service default/hello-node in default browser...
❗ Because you are using a Docker driver on darwin, the terminal needs to be open to run it.
Mouhamadou Moustapha Camara: @L M try the following command minikube service hello-node --url
On Mac and docker you need additional command
• Open a new terminal without stoping the previous process and run ps -ef | grep [email protected]
• you will have something like `
I had similar issue but this command ps -ef | grep [email protected] saved the day. Kindly take node of this number at the end of the result text 64237:10.102.67.87:8080 just after the -L flag. It will vary on your computer. Kindly use http://127.0.0.1:the-port-displayed-on-your-computer. In the case above, it will be http://127.0.0.1:64237 and i hope this helps.