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
AI時代の脳疲弊と向き合う ~言語学としてのPHP~
sakuraikotone
1
410
Fundamentals of Software Engineering In the Age of AI
therealdanvega
2
260
SourceGeneratorのマーカー属性問題について
htkym
0
200
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
760
[SF Ruby Feb'26] The Silicon Heel
palkan
0
110
野球解説AI Agentを開発してみた - 2026/02/27 LayerX社内LT会資料
shinyorke
PRO
0
350
20260228_JAWS_Beginner_Kansai
takuyay0ne
5
590
AWS×クラウドネイティブソフトウェア設計 / AWS x Cloud-Native Software Design
nrslib
16
3.3k
どんと来い、データベース信頼性エンジニアリング / Introduction to DBRE
nnaka2992
1
310
Claude Codeセッション現状確認 2026福岡 / fukuoka-aicoding-00-beacon
monochromegane
4
440
Docコメントで始める簡単ガードレール
keisukeikeda
1
130
AHC061解説
shun_pi
0
400
Featured
See All Featured
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
360
30k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.7k
Deep Space Network (abreviated)
tonyrice
0
92
Facilitating Awesome Meetings
lara
57
6.8k
Building an army of robots
kneath
306
46k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
10
1.1k
DevOps and Value Stream Thinking: Enabling flow, efficiency and business value
helenjbeal
1
150
<Decoding/> the Language of Devs - We Love SEO 2024
nikkihalliwell
1
160
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
34
2.7k
Navigating Algorithm Shifts & AI Overviews - #SMXNext
aleyda
1
1.2k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
2.5k
How to make the Groovebox
asonas
2
2k
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