Advertisement
Guest User

Untitled

a guest
May 4th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.48 KB | None | 0 0
  1. Vagrant.configure(2) do |config|
  2. config.vm.box = "ubuntu/trusty64"
  3. config.vm.box_check_update = false
  4. config.ssh.forward_agent = true
  5. config.vm.network "public_network"
  6. config.vm.synced_folder "/home/vicky/", "/home/vicky/"
  7. end
  8.  
  9. Bringing machine 'default' up with 'virtualbox' provider...
  10. ==> default: Checking if box 'phusion/ubuntu-14.04-amd64' is up to date...
  11. ==> default: Clearing any previously set forwarded ports...
  12. ==> default: Clearing any previously set network interfaces...
  13. ==> default: Preparing network interfaces based on configuration...
  14. default: Adapter 1: nat
  15. default: Adapter 2: hostonly
  16. default: Adapter 3: hostonly
  17. default: Adapter 4: hostonly
  18. ==> default: Forwarding ports...
  19. default: 3000 => 3334 (adapter 1)
  20. default: 1080 => 1082 (adapter 1)
  21. default: 22 => 2222 (adapter 1)
  22. ==> default: Running 'pre-boot' VM customizations...
  23. ==> default: Booting VM...
  24. ==> default: Waiting for machine to boot. This may take a few minutes...
  25. default: SSH address: 127.0.0.1:2222
  26. default: SSH username: vagrant
  27. default: SSH auth method: private key
  28. default: Warning: Connection timeout. Retrying...
  29. default: Warning: Remote connection disconnect. Retrying...
  30. default: Warning: Remote connection disconnect. Retrying...
  31. default: Warning: Remote connection disconnect. Retrying...
  32. default: Warning: Remote connection disconnect. Retrying...
  33. default: Warning: Remote connection disconnect. Retrying...
  34. default: Warning: Remote connection disconnect. Retrying...
  35. default: Warning: Remote connection disconnect. Retrying...
  36. default: Warning: Remote connection disconnect. Retrying...
  37. default: Warning: Remote connection disconnect. Retrying...
  38. default: Warning: Remote connection disconnect. Retrying...
  39. default: Warning: Remote connection disconnect. Retrying...
  40. default: Warning: Remote connection disconnect. Retrying...
  41. ==> default: Machine booted and ready!
  42. ==> default: Checking for guest additions in VM...
  43. ==> default: Configuring and enabling network interfaces...
  44. ==> default: Exporting NFS shared folders...
  45. ==> default: Preparing to edit /etc/exports. Administrator privileges will be required...
  46. Password:
  47. ==> default: Mounting NFS shared folders...
  48. ==> default: Machine already provisioned. Run `vagrant provision` or use the `--provision`
  49. ==> default: to force provisioning. Provisioners marked to run always will still run.
  50. ==> default: Running provisioner: shell...
  51. default: Running: inline script
  52. ==> default: stdin: is not a tty
  53. ==> default: stop: Unknown instance:
  54. ==> default: mongod start/running, process 8424
  55.  
  56. $ifconfig
  57. eth0 Link encap:Ethernet HWaddr 08:00:27:fd:f0:ed
  58. inet addr:10.0.2.15 Bcast:10.0.2.255 Mask:255.255.255.0
  59. inet6 addr: fe80::a00:27ff:fefd:f0ed/64 Scope:Link
  60. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  61. RX packets:3459 errors:0 dropped:0 overruns:0 frame:0
  62. TX packets:3324 errors:0 dropped:0 overruns:0 carrier:0
  63. collisions:0 txqueuelen:1000
  64. RX bytes:248047 (248.0 KB) TX bytes:240540 (240.5 KB)
  65.  
  66. eth1 Link encap:Ethernet HWaddr 08:00:27:b2:d7:a2
  67. inet6 addr: fe80::a00:27ff:feb2:d7a2/64 Scope:Link
  68. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  69. RX packets:22924 errors:0 dropped:0 overruns:0 frame:0
  70. TX packets:145 errors:0 dropped:0 overruns:0 carrier:0
  71. collisions:0 txqueuelen:1000
  72. RX bytes:1964056 (1.9 MB) TX bytes:43062 (43.0 KB)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement