`ssh` executable notfound in any directories in the %PATH% variable. Is anSSH client installed? Try installing Cygwin, MinGW or Git, all of whichcontain an SSH client. Or use the PuTTY SSH client with the followingauthentication information shown below:Host: 127.0.0.1Port: 2222Username: vagrantハマったこと その1
ハマったこと その3C:¥Users¥Yuta Ohashi¥Desktop¥laravel>knifesolo cookvagrant@192.168.33.100Running Chef on 192.168.33.100...Checking Chef version...Enter the password for vagrant@192.168.33.100:Uploading the kitchen...ERROR: RuntimeError: Failed to launch command ["rsync", "-rL", "--chmod=ugo=rwX", "--rsh=ssh vagrant@192.168.33.100", "--delete", "--exclude=revision-deploys", "--exclude=tmp", "--exclude=.git", "--exclude=.hg", "--exclude=.svn", "--exclude=.bzr", "/cygdrive/C/opscode/chef/embedded/lib/ruby/gems/1.9.1/gems/knife-solo-0.4.1/lib/knife-solo/resources/patch_cookbooks/", ":~/chef-solo/cookbooks-1"]rsyncに対応していない。。
20.
ハマったこと その3これをすることで共有フォルダにおかれているCookBookをHostサーバ上で実行できます。・Vagrantfileに追記# Installchefconfig.vm.provision :shell, :inline => "curl -L'http://www.opscode.com/chef/install.sh' | sudo bash"# provisioning with chef solo.config.vm.provision :chef_solo do |chef|chef.cookbooks_path = "./chef/cookbooks“chef.data_bags_path = "./chef/data_bags“chef.add_recipe "httpd“end