Vagrant/ssh issue

Recently I tried to reboot my vagrant server and it wasn’t able to reboot.

It told me that there was no virtual machine installed and it needed to provision the machine again. I kept canceling the provisioning and eventually I traced it back to this issue, and changed trellis/.vagrant/machines/default/virtualbox/id to match the id of my box according to vboxmanage list vms

It worked, but now when I run vagrant up

Warning: Authentication failure. Retrying… - repeats until the start up process times out.

I’ve tried erasing my ~/.ssh/config

I’ve tried setting these options in my Vagrantfile

config.ssh.private_key_path = '/Users/me/.vagrant.d/insecure_private_key'

config.ssh.insert_key = false

I feel like it may require re-provisioning my server for some reason, but I can’t do that if it will erase the database information related to the site I’m building.

Could anyone offer any advice our routes to try? Thanks!