Homestead: Não é possível iniciar

2

Não consigo que minha caixa funcione corretamente. Estou seguindo as instruções aqui

Estou executando o Windows 8.1 de 64 bits.

Quando eu executo vagrant up , ele passa por uma série de comandos e registra um monte de coisas, mas acaba devolvendo o console para mim. Quando tento ir para 192.168.10.10, obtenho ERR_CONNECTION_REFUSED no Chrome

Os últimos registros são:

==> default: Forwarding ports...
    default: 80 (guest) => 8000 (host) (adapter 1)
    default: 443 (guest) => 44300 (host) (adapter 1)
    default: 3306 (guest) => 33060 (host) (adapter 1)
    default: 5432 (guest) => 54320 (host) (adapter 1)
    default: 22 (guest) => 2222 (host) (adapter 1)
==> default: Running 'pre-boot' VM customizations...
==> default: Booting VM...
==> default: Waiting for machine to boot. This may take a few minutes...
    default: SSH address: 127.0.0.1:2222
    default: SSH username: vagrant
    default: SSH auth method: private key
==> default: Machine booted and ready!
==> default: Checking for guest additions in VM...
==> default: Setting hostname...
==> default: Configuring and enabling network interfaces...
==> default: Mounting shared folders...
    # Removed sharing folders......
==> default: Machine already provisioned. Run 'vagrant provision' or use the '--provision'
==> default: flag to force provisioning. Provisioners marked to run always will still run.

Olhando para o VirtualBox Manager, a tela de visualização mostra no estágio de login:

MeuVagrantfile:

require'json'require'yaml'VAGRANTFILE_API_VERSION="2"
confDir = $confDir ||= File.expand_path("~/.homestead")

homesteadYamlPath = confDir + "/Homestead.yaml"
homesteadJsonPath = confDir + "/Homestead.json"
afterScriptPath = confDir + "/after.sh"
aliasesPath = confDir + "/aliases"

require File.expand_path(File.dirname(__FILE__) + '/scripts/homestead.rb')

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|

    # config.vm.provider :virtualbox do |vb|
    #   vb.gui = true
    # end


    if File.exists? aliasesPath then
        config.vm.provision "file", source: aliasesPath, destination: "~/.bash_aliases"
    end

    if File.exists? homesteadYamlPath then
        Homestead.configure(config, YAML::load(File.read(homesteadYamlPath)))
    elsif File.exists? homesteadJsonPath then
        Homestead.configure(config, JSON.parse(File.read(homesteadJsonPath)))
    end

    if File.exists? afterScriptPath then
        config.vm.provision "shell", path: afterScriptPath
    end


end

Meu Homestead.yaml

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

authorize: ~/.ssh/id_rsa.pub

keys:
    - ~/.ssh/id_rsa

folders:
    - map: C:\myfolder
      to:  /home/vagrant/Code

sites:
    - map: joineval.local
      to: /home/vagrant/Code/Laravel/public

databases:
    - homestead

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

# ports:
#     - send: 50000
#       to: 5000
#     - send: 7777
#       to: 777
#       protocol: udp
    
por Martin 04.02.2016 / 19:37

1 resposta

0

Você deve se conectar a 127.0.0.1:8000 ou localhost:8000 . Isso encaminha para o servidor da web no convidado da VM.

    
por 04.02.2016 / 21:53