방랑자 :: 방랑자를 실행할 수 없습니다. 접속 시간 초과. 재시도


3

나는 늪지에서 라 라벨 농가 방랑 상자로 이주하기 시작했지만 상자를 시작할 때 쿵쿵 쳤다. 나는 모든 자산을 다운로드하고 구성했으며 상자를 부팅하기 위해 방랑자를 달렸습니다. 그러나 방랑자의 결과는 다음과 같습니다.

$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Checking if box 'laravel/homestead' is up to date...
==> default: Clearing any previously set forwarded ports...
==> default: Fixed port collision for 22 => 2222. Now on port 2200.
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
    default: Adapter 1: nat
    default: Adapter 2: hostonly
==> default: Forwarding ports...
    default: 80 => 8000 (adapter 1)
    default: 3306 => 33060 (adapter 1)
    default: 5432 => 54320 (adapter 1)
    default: 22 => 2200 (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:2200
    default: SSH username: vagrant
    default: SSH auth method: private key
    default: Warning: Connection timeout. Retrying...
    default: Warning: Connection timeout. Retrying...
    default: Warning: Connection timeout. Retrying...
    default: Warning: Connection timeout. Retrying...
    default: Warning: Connection timeout. Retrying...
    default: Warning: Connection timeout. Retrying...
    default: Warning: Connection timeout. Retrying...
    default: Warning: Connection timeout. Retrying...
    default: Warning: Connection timeout. Retrying...
    default: Warning: Connection timeout. Retrying...
    default: Warning: Connection timeout. Retrying...
    default: Warning: Connection timeout. Retrying...
    default: Warning: Connection timeout. Retrying...
    default: Warning: Connection timeout. Retrying...
    default: Warning: Connection timeout. Retrying...
    default: Warning: Connection timeout. Retrying...
    default: Warning: Connection timeout. Retrying...
    default: Warning: Connection timeout. Retrying...
    default: Warning: Connection timeout. Retrying...
Timed out while waiting for the machine to boot. This means that
Vagrant was unable to communicate with the guest machine within
the configured ("config.vm.boot_timeout" value) time period.

If you look above, you should be able to see the error(s) that
Vagrant had when attempting to connect to the machine. These errors
are usually good hints as to what may be wrong.

If you're using a custom box, make sure that networking is properly
working and you're able to connect to the machine. It is a common
problem that networking isn't setup properly in these boxes.
Verify that authentication configurations are also setup properly,
as well.

If the box appears to be booting properly, you may want to increase
the timeout ("config.vm.boot_timeout") value.

방랑자 중단의 결과는 다음과 같습니다.

$ vagrant halt
==> default: Attempting graceful shutdown of VM...
    default: Guest communication could not be established! This is usually because
    default: SSH is not running, the authentication information was changed,
    default: or some other networking issue. Vagrant will force halt, if
    default: capable.
==> default: Forcing shutdown of VM...

문제가 SSH를 여는 것 같습니다. https://stackoverflow.com/questions/22575261/vagrant-stuck-connection-timeout-retrying에 대한 답변 은 비슷한 문제로 보이지만 도움이되지 않았습니다.

Windows 8.1을 실행하고 있습니다.


VM이 64 비트입니까? 내 컴퓨터의 BIOS에서 가상화 기능을 활성화 할 때까지 비슷한 문제가있었습니다. 32 비트 VM을 사용할 수 있지만 64는 사용할 수 없습니다. ssh 시간 초과는 VM이 ​​올바르게 부팅되지 않는 증상입니다.
Fred the Magic Wonder Dog

어떻게 알 수 있습니까?
davidxd33

BIOS에서이 기능을 활성화했으며 현재 작동하는 것 같습니다. 원격 연결 시간 초과가 두 번 발생했지만 그 후 부팅되었습니다.
davidxd33 1

답변:


0

부팅 단계 중 SSH 연결 시간 초과는 다음과 같은 여러 가지 이유로 발생할 수 있습니다.

  • 시스템이 사용자 상호 작용을 기다립니다 (예 : 공유 파티션이 준비되지 않았습니다 ).
  • sshd 잘못된 구성,
  • 방화벽 구성 오류 (로컬이 아닌 경우)
  • 개인 키가 일치하지 않습니다.
  • 부팅 과정에 시간이 너무 많이 걸립니다 (증가 시도 config.vm.boot_timeout).
  • BIOS에서 가상화가 활성화되어 있는지 확인하십시오 ( 설명 별 ).

문제를 디버그하려면 다음과 같이 실행하십시오.

VAGRANT_LOG=debug vagrant up

명백한 것이 없다면 다른 터미널에서 vagrant ssh또는 다음 방법으로 연결하십시오 .

vagrant ssh-config > vagrant-ssh; ssh -F vagrant-ssh default

SSH가 여전히 실패하면 GUI (예 :)를 사용하여 SSH를 다시 ​​실행하십시오 config.gui = true.

그렇지 않은 경우 실행중인 프로세스 (예 :)를 vagrant ssh -c 'pstree -a'확인하거나을 확인하십시오 sshd_config.


이 일회용 VM 경우, 당신은 항상 할 수있는 destroy그와 up다시. 또한 Vagrant 및 Virtualbox를 업그레이드하십시오.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.