LoginSignup
1
1

More than 5 years have passed since last update.

OS X El CapitanにChefをオムニバスインストーラで入れた時の問題

Posted at

El CapitanにChefをオムニバスインストーラでインストールしたところ、

オムニバスインストーラでインストール
$ curl -L https://www.opscode.com/chef/install.sh | sudo bash

インストールの最後で /usr/bin 配下にシンボリックを作成しようとしてインストールが失敗した。

/opt/chef 配下にインストールはされていたので、 /usr/local/bin に手動でリンクを貼った。

シンボリックリンク作成
$ cd /opt/chef/bin
$ sudo ln -s /usr/local/bin/chef-apply chef-apply
$ sudo ln -s /opt/chef/bin/chef-client chef-client
$ sudo ln -s /opt/chef/bin/chef-shell chef-shell
$ sudo ln -s /opt/chef/bin/chef-solo chef-solo
1
1
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
1
1