0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

久しぶりのvagrant upでつまづいた話

Posted at

はじめに

Laravelを少し触ったことがある程度の初心者なので,ガッツリ開発をしている方々は”それって当たり前だよね?”と思うかもしれませんが,ご了承ください.

問題発生

久しぶりにLaravelを触ってみようと思い,Homesteadの設定をしていたところ,
vagrant up
させたところで…

エラー
/opt/vagrant/embedded/lib/ruby/2.4.0/psych.rb:377:in `parse': (<unknown>): mapping values are not allowed in this context at line 14 column 9 (Psych::SyntaxError)

というエラーが発生しました.

このエラー,よく見るとrubyがどうのこうのって書いてあります.
あれ?rubyなんて使ったことないし,これLaravelの環境構築なんだけどな…

原因

エラー文をググってみると,同じように困っている方がいました.
この記事によると,map:の後に半角スペースが足りないことが原因でした.

間違い
folders:
    - map:/Users/code 
      to: /home/vagrant/code
正しい
folders:
    - map: /Users/code 
      to: /home/vagrant/code

え?そこのスペース大事だったんだ…
と気づかされました.

map:の後ろに半角スペースを追加したところ,無事vagrant upが実行出来ました!

参考文献

homestead laravel vagrant not allowed windows

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?