Why is the firewall throwing authentication errors when I run the up command?

I just got to my machine and added a new site to my vagrant settings file in the Homestead.yaml file like this:

    ---
    ip: "192.168.10.10"
    memory: 2048
    cpus: 1
    provider: virtualbox

    authorize: ~/.ssh/id_rsa.pub

    keys:
        - ~/.ssh/id_rsa


   folders:
    - map: /Freelance/projects
      to: /home/vagrant/projects
    - map: /Freelance/projects/synergy-camps/synergy-camps
      to: /home/vagrant/projects

sites:
    - map: scoff_app.local
      to: /home/vagrant/projects/scoff/scoff-api/public
    - map: phpmyadmin.app
      to: /home/vagrant/projects/phpmyadmin
    - map: synergy_camps.dev
      to: /home/vagrant/projects/synergy-camps/synergy-camps/public

databases:
    - homestead
    - synergycamps

    databases:
        - homestead
        - synergycamps

    variables:
        - key: APP_ENV
          value: local

    # blackfire:
    #     - id: foo
    #       token: bar
    #       client-id: foo
    #       client-token: bar

    # ports:
    #     - send: 93000
    #       to: 9300
    #     - send: 7777

      

When I connected to my / Homestead directory and ran:

vagrant up

I am getting the error below:

default: Warning: Authentication failure. Retrying...

      

Has anyone had this before?

+3


source to share


1 answer


Are you sure your key is correct?

Perhaps your VM is asking a question while booting the machine.



More information about this can be found in the following answers: Wagrant ssh authentication failed

0


source







All Articles