Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.31 KB | None | 0 0
  1. PS C:projetos_vagrant> vagrant up
  2. Bringing machine 'default' up with 'virtualbox' provider...
  3. ==> default: Importing base box 'hellobits'...
  4. ==> default: Matching MAC address for NAT networking...
  5. ==> default: Setting the name of the VM: projetos_vagrant_default_1438439495619_27166
  6. ==> default: Clearing any previously set network interfaces...
  7. ==> default: Preparing network interfaces based on configuration...
  8. default: Adapter 1: nat
  9. ==> default: Forwarding ports...
  10. default: 3000 => 3000 (adapter 1)
  11. default: 9292 => 9292 (adapter 1)
  12. default: 4567 => 4567 (adapter 1)
  13. default: 1080 => 1080 (adapter 1)
  14. default: 8888 => 8888 (adapter 1)
  15. default: 3306 => 3306 (adapter 1)
  16. default: 1234 => 1234 (adapter 1)
  17. default: 5432 => 5432 (adapter 1)
  18. default: 6379 => 6379 (adapter 1)
  19. default: 9200 => 9200 (adapter 1)
  20. default: 27017 => 27017 (adapter 1)
  21. default: 80 => 8080 (adapter 1)
  22. default: 22 => 2222 (adapter 1)
  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: Connection timeout. Retrying...
  30. default: Warning: Connection timeout. Retrying...
  31. default: Warning: Connection timeout. Retrying...
  32. default: Warning: Connection timeout. Retrying...
  33. default: Warning: Connection timeout. Retrying...
  34. default: Warning: Connection timeout. Retrying...
  35. default: Warning: Connection timeout. Retrying...
  36. default: Warning: Connection timeout. Retrying...
  37. default: Warning: Connection timeout. Retrying...
  38. default: Warning: Connection timeout. Retrying...
  39. default: Warning: Connection timeout. Retrying...
  40. default: Warning: Connection timeout. Retrying...
  41. default: Warning: Connection timeout. Retrying...
  42. default: Warning: Connection timeout. Retrying...
  43. default: Warning: Connection timeout. Retrying...
  44. default: Warning: Connection timeout. Retrying...
  45. default: Warning: Connection timeout. Retrying...
  46. default: Warning: Connection timeout. Retrying...
  47. Timed out while waiting for the machine to boot. This means that
  48. Vagrant was unable to communicate with the guest machine within
  49. the configured ("config.vm.boot_timeout" value) time period.
  50.  
  51. If you look above, you should be able to see the error(s) that
  52. Vagrant had when attempting to connect to the machine. These errors
  53. are usually good hints as to what may be wrong.
  54.  
  55. If you're using a custom box, make sure that networking is properly
  56. working and you're able to connect to the machine. It is a common
  57. problem that networking isn't setup properly in these boxes.
  58. Verify that authentication configurations are also setup properly,
  59. as well.
  60.  
  61. If the box appears to be booting properly, you may want to increase
  62. the timeout ("config.vm.boot_timeout") value.
  63. PS C:projetos_vagrant>
  64.  
  65. # -*- mode: ruby -*-
  66. # vi: set ft=ruby :
  67.  
  68. # All Vagrant configuration is done below. The "2" in Vagrant.configure
  69. # configures the configuration version (we support older styles for
  70. # backwards compatibility). Please don't change it unless you know what
  71. # you're doing.
  72.  
  73. VAGRANTFILE_API_VERSION = "2"
  74.  
  75. Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  76. config.vm.box = "hellobits"
  77. config.vm.box_url = "http://files.hellobits.com/vagrant/hellobits-trusty64-virtualbox.box"
  78.  
  79. config.ssh.insert_key = false
  80.  
  81. config.vm.network :forwarded_port, guest: 3000, host: 3000 # rails
  82. config.vm.network :forwarded_port, guest: 9292, host: 9292 # rack
  83. config.vm.network :forwarded_port, guest: 4567, host: 4567 # sinatra
  84. config.vm.network :forwarded_port, guest: 1080, host: 1080 # mailcatcher
  85. config.vm.network :forwarded_port, guest: 8888, host: 8888 # jasmine
  86. config.vm.network :forwarded_port, guest: 3306, host: 3306 # mysql
  87. config.vm.network :forwarded_port, guest: 1234, host: 1234 # node
  88. config.vm.network :forwarded_port, guest: 5432, host: 5432 # postgresql
  89. config.vm.network :forwarded_port, guest: 6379, host: 6379 # redis
  90. config.vm.network :forwarded_port, guest: 9200, host: 9200 # elasticsearch
  91. config.vm.network :forwarded_port, guest: 27017, host: 27017 # mongodb
  92. config.vm.network :forwarded_port, guest: 80, host: 8080 # apache/nginx
  93. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement