좋은 프로그램은 마음의 여유에서 나온다.

우분투에 코드디플로이 에이전트 설치하기 본문

클라우드,빅데이터/aws

우분투에 코드디플로이 에이전트 설치하기

좋은데이 2016. 11. 9. 12:04

$ sudo apt-get update

$ sudo apt-get install python-pip

$ sudo apt-get install ruby2.0

$ cd /home/ubuntu
$ wget https://버켓이름(아래참조).s3.amazonaws.com/latest/install
$ chmod +x ./install
$ sudo ./install auto



ubuntu@ip-10-0-0-231:~$ sudo service codedeploy-agent status
The AWS CodeDeploy agent is running as PID 17769


error: No AWS CodeDeploy agent running 가 나오면 코드 디플로이 실행하기


$ sudo servie codedeploy-agent start
$ sudo servie codedeploy-agent status


* 지역별 코드 디플로이 저장소


aws-codedeploy-us-east-1 for instances in the US East (N. Virginia) region
aws-codedeploy-us-east-2 for instances in the US East (Ohio) region
aws-codedeploy-us-west-1 for instances in the US West (N. California) region
aws-codedeploy-us-west-2 for instances in the US West (Oregon) region
aws-codedeploy-ap-south-1 for instances in the Asia Pacific (Mumbai) region
aws-codedeploy-ap-northeast-2 for instances in the Asia Pacific (Seoul) region
aws-codedeploy-ap-southeast-1 for instances in the Asia Pacific (Singapore) region
aws-codedeploy-ap-southeast-2 for instances in the Asia Pacific (Sydney) region
aws-codedeploy-ap-northeast-1 for instances in the Asia Pacific (Tokyo) region
aws-codedeploy-eu-central-1 for instances in the EU (Frankfurt) region
aws-codedeploy-eu-west-1 for instances in the EU (Ireland) region
aws-codedeploy-sa-east-1 for instances in the South America (São Paulo) region


레퍼런스 : http://docs.aws.amazon.com/ko_kr/codedeploy/latest/userguide/how-to-run-agent-install.html#how-to-run-agent-install-ubuntu

Comments