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
システム成長を止めない!本番無停止テーブル移行の全貌
sakawe_ee
1
200
Azure AI Foundryではじめてのマルチエージェントワークフロー
seosoft
0
170
Hack Claude Code with Claude Code
choplin
4
2.1k
NPOでのDevinの活用
codeforeveryone
0
840
git worktree × Claude Code × MCP ~生成AI時代の並列開発フロー~
hisuzuya
1
570
VS Code Update for GitHub Copilot
74th
2
650
A full stack side project webapp all in Kotlin (KotlinConf 2025)
dankim
0
120
明示と暗黙 ー PHPとGoの インターフェイスの違いを知る
shimabox
2
510
初学者でも今すぐできる、Claude Codeの生産性を10倍上げるTips
s4yuba
16
11k
20250704_教育事業におけるアジャイルなデータ基盤構築
hanon52_
5
790
PipeCDのプラグイン化で目指すところ
warashi
1
280
プロダクト志向なエンジニアがもう一歩先の価値を目指すために意識したこと
nealle
0
130
Featured
See All Featured
Designing Experiences People Love
moore
142
24k
Making the Leap to Tech Lead
cromwellryan
134
9.4k
Building a Scalable Design System with Sketch
lauravandoore
462
33k
How GitHub (no longer) Works
holman
314
140k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
44
2.4k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
34
3.1k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
31
1.3k
Agile that works and the tools we love
rasmusluckow
329
21k
Code Reviewing Like a Champion
maltzj
524
40k
Reflections from 52 weeks, 52 projects
jeffersonlam
351
20k
Documentation Writing (for coders)
carmenintech
72
4.9k
How to train your dragon (web standard)
notwaldorf
95
6.1k
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