Install Chef on CentOS(Chef 설치)
DevOps2014. 10. 20. 09:00
Chef 설치는 아래와 같이 간단한 명령으로 가능합니다. 하지만 같이 설치되는게 많아서 무척 오래 걸립니다. 유의하세요.
$ curl -L http://www.opscode.com/chef/install.sh | sudo bash
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
48 16514 48 8001 0 0 6550 0 0:00:02 0:00:01 0:00:01 8687Downloading Chef for el...
100 16514 100 16514 0 0 9853 0 0:00:01 0:00:01 --:--:-- 12010
downloading http://www.opscode.com/chef/metadata?v=&prerelease=false&nightlies=false&p=el&pv=6&m=i686
to file /tmp/install.sh.1845/metadata.txt
trying curl...
url http://opscode-omnibus-packages.s3.amazonaws.com/el/6/i686/chef-11.16.4-1.el6.i686.rpm
md5 da7bbe41d9510de62adf6afe89ed2ecd
sha256 545075be04de512c780c961b3aa3809c4540fd68c47c167eced67a8daa0821b7
downloaded metadata file looks valid...
downloading http://opscode-omnibus-packages.s3.amazonaws.com/el/6/i686/chef-11.16.4-1.el6.i686.rpm
to file /tmp/install.sh.1845/chef-11.16.4-1.el6.i686.rpm
trying curl...
Comparing checksum with sha256sum...
Installing Chef
installing with rpm...
warning: /tmp/install.sh.1845/chef-11.16.4-1.el6.i686.rpm: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY
Preparing... ########################################### [100%]
1:chef ########################################### [100%]
Thank you for installing Chef!
설치 후에는 아래와 같이 /opt/chef/embedded/bin 디렉토리를 PATH에 추가해 줍니다. ruby, gem 등을 따로 설치하지 않고도 사용할 수 있게 됩니다. 상당히 유용하더군요.
$ echo 'export PATH="/opt/chef/embedded/bin:$PATH"' >> ~/.bash_profile
$ source ~/.bash_profile
'DevOps' 카테고리의 다른 글
AWS에 설치된 MySQL DB를 외부 접속이 가능 하도록 설정 (1) | 2015.02.22 |
---|---|
Install knife-solo(knife-solo 설치) (0) | 2014.10.21 |
SonarQube Runner를 사용하여 프로젝트 분석하기 (0) | 2014.08.17 |
SonarQube 설치 및 설정 (2) | 2014.08.05 |
MySQL 5.0.45 원하는 위치에 수동 설치 및 윈도 서비스로 등록 하기 (0) | 2008.02.20 |
댓글()