kikeda1104's blog

備忘録・技術に関することを書いています。(webエンジニア)

2014-10-15から1日間の記事一覧

vagrant provisionのエラー対応(vagrant-omnibus)

下記のエラーが出て対応したので、備忘録です。 The chef binary (either chef-solo or chef-client) was not found on the VM and is required for chef provisioning. Please verify that chef is installed and that the binary is available on the PATH…

秘密鍵のコピー (Mac OS X)

pbcopyとpbpasteがいい感じに使えたので、メモ。 秘密鍵をauthorized_keysに入力 $ cat ~/.ssh/hoge.pem | pbcopy $ pbpaste > authorized_keys 以上

rbenvのcookbook(Chef)

kikeda1104です。 VMにrbenvをインストールしたいので、これをChefのcookbookに記述することで定義したいと思います。 Berksfile githubのURLを指定します。 cookbook 'rbenv', :git => 'git://github.com/fnichol/chef-rbenv', :ref => 'v0.7.2' Vagrantfil…