Vagrant box images

i have used vagrant box centos.vmdk image to create a VM manually .(not using Vagrant file)
It gets loaded but I am unable to find localhost login name and password for the same.

where can i find the same???

Hi @navin,

By default, Vagrant expects a “vagrant” user to SSH into the machine as. This user should be setup with the insecure keypair that Vagrant uses as a default to attempt to SSH. Also, even though Vagrant uses key-based authentication by default, it is a general convention to set the password for the “vagrant” user to “vagrant”. This lets people login as that user manually if they need to.

Publicly available base boxes usually use a root password of “vagrant” to keep things easy.

Reference:

thank you for posting the reference

@navin You are welcome.