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
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
XP, Testing and ninja testing ZOZ5
m_seki
3
700
Go言語はstack overflowの夢を見るか?
logica0419
0
370
組込みだけじゃない!TinyGo で始める無料クラウド開発入門
otakakot
0
300
品質ワークショップをやってみた
nealle
0
510
Catch Up: Go Style Guide Update
andpad
0
230
AI Agent 時代的開發者生存指南
eddie
3
1.8k
bootcamp2025_バックエンド研修_WebAPIサーバ作成.pdf
geniee_inc
0
110
CSC305 Lecture 04
javiergs
PRO
0
270
詳しくない分野でのVibe Codingで困ったことと学び/vibe-coding-in-unfamiliar-area
shibayu36
3
5.1k
タスクの特性や不確実性に応じた最適な作業スタイルの選択(ペアプロ・モブプロ・ソロプロ)と実践 / Optimal Work Style Selection: Pair, Mob, or Solo Programming.
honyanya
3
180
Writing Better Go: Lessons from 10 Code Reviews
konradreiche
0
1.3k
overlayPreferenceValue で実現する ピュア SwiftUI な AdMob ネイティブ広告
uhucream
0
190
Featured
See All Featured
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
1.6k
The Power of CSS Pseudo Elements
geoffreycrofte
79
6k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
Unsuck your backbone
ammeep
671
58k
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.5k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
508
140k
Java REST API Framework Comparison - PWX 2021
mraible
34
8.9k
Code Review Best Practice
trishagee
72
19k
Building a Scalable Design System with Sketch
lauravandoore
463
33k
Thoughts on Productivity
jonyablonski
70
4.9k
4 Signs Your Business is Dying
shpigford
185
22k
Designing Experiences People Love
moore
142
24k
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