Advertisement
Guest User

Untitled

a guest
May 28th, 2015
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. hi, I hit same issue today and at least in my environment, the reason caused "No IP address found", seems to be my host interface setting.
  2. it was like following. that is, IP address was in the range which docker-machine want to assign to its eth1
  3.  
  4. Name: vboxnet1
  5. GUID: 786f6276-656e-4174-8000-0a0027000001
  6. DHCP: Disabled
  7. IPAddress: 192.168.99.1
  8. NetworkMask: 255.255.255.0
  9. IPV6Address:
  10. IPV6NetworkMaskPrefixLength: 0
  11. HardwareAddress: 0a:00:27:00:00:01
  12. MediumType: Ethernet
  13. Status: Up
  14. VBoxNetworkName: HostInterfaceNetworking-vboxnet1
  15. so I changed this to below setting and re-create docker machine again, this problem did not occur.
  16.  
  17. Name: vboxnet1
  18. GUID: 786f6276-656e-4174-8000-0a0027000001
  19. DHCP: Disabled
  20. IPAddress: 192.168.59.103
  21. NetworkMask: 255.255.255.0
  22. IPV6Address:
  23. IPV6NetworkMaskPrefixLength: 0
  24. HardwareAddress: 0a:00:27:00:00:01
  25. MediumType: Ethernet
  26. Status: Up
  27. VBoxNetworkName: HostInterfaceNetworking-vboxnet1
  28. hope this would help you guys in trouble.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement