Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Getting started with JuJu and AWS
Search
Quentin Wright
March 19, 2013
Programming
0
47
Getting started with JuJu and AWS
List of commands from the ubuntu juju tutorial
Quentin Wright
March 19, 2013
Tweet
Share
More Decks by Quentin Wright
See All by Quentin Wright
Starting and Connecting to an AWS Instance - FlossUK
qwright
0
40
Starting and Connecting to an AWS Instance - Screenshots
qwright
0
40
Creating AWS credentials
qwright
0
35
Creating AWS credentials - screenshots
qwright
0
28
Deploying JuJu and LXC - Rugby LUG 11th March 2013
qwright
0
43
Deploying JuJu and LXC - Screenshots
qwright
1
74
Other Decks in Programming
See All in Programming
Swift Updates - Learn Languages 2025
koher
2
490
詳解!defer panic recover のしくみ / Understanding defer, panic, and recover
convto
0
250
AI時代のUIはどこへ行く?
yusukebe
18
9k
RDoc meets YARD
okuramasafumi
4
170
Design Foundational Data Engineering Observability
sucitw
3
200
実用的なGOCACHEPROG実装をするために / golang.tokyo #40
mazrean
1
290
より安全で効率的な Go コードへ: Protocol Buffers Opaque API の導入
shwatanap
1
320
複雑なフォームに立ち向かう Next.js の技術選定
macchiitaka
2
180
MCPでVibe Working。そして、結局はContext Eng(略)/ Working with Vibe on MCP And Context Eng
rkaga
5
2.3k
GitHubとGitLabとAWS CodePipelineでCI/CDを組み比べてみた
satoshi256kbyte
4
240
旅行プランAIエージェント開発の裏側
ippo012
2
920
ぬるぬる動かせ! Riveでアニメーション実装🐾
kno3a87
1
230
Featured
See All Featured
Stop Working from a Prison Cell
hatefulcrawdad
271
21k
A Modern Web Designer's Workflow
chriscoyier
696
190k
Music & Morning Musume
bryan
46
6.8k
Build your cross-platform service in a week with App Engine
jlugia
231
18k
Rebuilding a faster, lazier Slack
samanthasiow
83
9.2k
It's Worth the Effort
3n
187
28k
What’s in a name? Adding method to the madness
productmarketing
PRO
23
3.7k
Balancing Empowerment & Direction
lara
3
620
Gamification - CAS2011
davidbonilla
81
5.4k
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.1k
The Illustrated Children's Guide to Kubernetes
chrisshort
48
50k
Java REST API Framework Comparison - PWX 2021
mraible
33
8.8k
Transcript
Getting started with JuJu and AWS Derived from https://juju.ubuntu.com/docs/user-tutorial.html Install
the ubuntu ppa and juju: $ sudo add-apt-repository ppa:juju/pkgs $ sudo aptitude update $ sudo aptitude install juju Generate a key-pair $ ssh-keygen -t rsa -b 2048 Create an environment: $ juju bootstrap need to create a ~/.juju/environments.yaml like this: environments: sample: type: ec2 access-key: <AWS Access Key ID> secret-key: <AWS secret access key> control-bucket: juju-6b4729fe41eb4e46ac4d8f6d9a971dfa admin-secret: 9fb283d7672f4b58b1a8f8f6e8800db0 default-series: precise # ssl-hostname-verification: true Try bootstrap again: $ juju bootstrap See What's happening with $ juju status $ juju deploy mysql wordpress-db $ juju deploy wordpress $ juju add-relation wordpress wordpress-db $ juju expose wordpress $ juju add-unit wordpress When all is done: $ juju destroy-environment