一、Windows 環境搭建問題彙總

mrsmallyi發表於2018-07-22

1、在 SSH auth method: private key 停頓的問題處理和解決

剛開始,我是直接設定Virtual Box的網路設定,把那個"接入網線"打勾,如下圖:
file
但是發現,設定後重啟還是不行

後面是在stackoverflow的這篇文章
https://stackoverflow.com/questions/409682...
裡解決的,也是設定Virtual Box網路,具體步驟:

1.Completely uninstall and reinstall Vagrant, VirtualBox, and Homestead.
2.Ensure the homestead-7 box is shut down within the VirtualBox UI
3.Right-click the homestead-7 box, and choose Settings
4.Click 'Network'
5.Under 'Adapter 1', which should be attached to NAT, click 'Advanced'
6.Tick the box beside 'Cable Connected'
7.Save settings, and reprovision Homestead with vagrant up --provision
8.Run vagrant reload --provision to reprovision the machine

在git bash命令列輸入第七個步驟命令 vagrant up --provision後執行,結果就成功了連線上了。
查了下 provision 引數的作用:將快速重啟虛擬機器,跳過初始匯入步驟,provision 引數告訴 Vagrant 執行 provisioners,因為該步驟通常只會在第一次執行 vagrant up 時執行。


20180908 -- 這幾天有碰到這問題,本來打算環境搭建重新搭一遍的,執行以下命令:
file

vagrant destroy

銷燬vagrant,重啟

vagrant up --provision

file
...
file

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章