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
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
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
42
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
最初からAWS CDKで技術検証してもいいんじゃない?
akihisaikeda
4
160
[SF Ruby Feb'26] The Silicon Heel
palkan
0
110
Linux Kernelの1文字のミスで 権限昇格ができた話
rqda
0
1.9k
エラーログのマスキングの仕組みづくりに役立ったASTの話
kumoichi
0
250
maplibre-gl-layers - 地図に移動体たくさん表示したい
kekyo
PRO
0
300
AIに任せる範囲を安全に広げるためにやっていること
fukucheee
0
150
Fundamentals of Software Engineering In the Age of AI
therealdanvega
2
260
Ruby and LLM Ecosystem 2nd
koic
1
1k
野球解説AI Agentを開発してみた - 2026/02/27 LayerX社内LT会資料
shinyorke
PRO
0
350
20260313 - Grafana & Friends Taipei #1 - Kubernetes v1.36 的開發雜記:那些困在 Alpha 加護病房太久的 Metrics
tico88612
0
220
SourceGeneratorのマーカー属性問題について
htkym
0
200
社内規程RAGの精度を73.3% → 100%に改善した話
oharu121
13
8.2k
Featured
See All Featured
A Guide to Academic Writing Using Generative AI - A Workshop
ks91
PRO
0
240
How to Grow Your eCommerce with AI & Automation
katarinadahlin
PRO
1
150
The Curious Case for Waylosing
cassininazir
0
270
My Coaching Mixtape
mlcsv
0
78
Google's AI Overviews - The New Search
badams
0
930
A Soul's Torment
seathinner
5
2.5k
Exploring anti-patterns in Rails
aemeredith
2
290
What Being in a Rock Band Can Teach Us About Real World SEO
427marketing
0
190
Color Theory Basics | Prateek | Gurzu
gurzu
0
260
Done Done
chrislema
186
16k
Introduction to Domain-Driven Design and Collaborative software design
baasie
1
640
Visual Storytelling: How to be a Superhuman Communicator
reverentgeek
2
470
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