Advertisement
Guest User

Untitled

a guest
Jan 28th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. If SSH Error:
  2. =============
  3.  
  4. * this error is because you are not giving your VM the correct creds.
  5. * to fix this, in your Vagrantfile, make it look something like:
  6.  
  7. ```
  8.  
  9. config.ssh.forward_agent = true
  10. config.ssh.username = 'vagrant'
  11. config.ssh.password = 'vagrant'
  12.  
  13. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement