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
Azure入門(Azure Virtual Machine、Azure App Service)
Search
Yuta Kujirai
January 17, 2019
Technology
0
180
Azure入門(Azure Virtual Machine、Azure App Service)
Yuta Kujirai
January 17, 2019
Tweet
Share
More Decks by Yuta Kujirai
See All by Yuta Kujirai
Azure入門(AzureBlobStarage)
yuta0910
0
140
azure入門(Azure Resource Manager)
yuta0910
0
220
Other Decks in Technology
See All in Technology
DynamoDB でスロットリングが発生したとき/when_throttling_occurs_in_dynamodb_short
emiki
0
240
サイバーセキュリティと認知バイアス:対策の隙を埋める心理学的アプローチ
shumei_ito
0
390
データプロダクトの定義からはじめる、データコントラクト駆動なデータ基盤
chanyou0311
2
320
第1回 国土交通省 データコンペ参加者向け勉強会③- Snowflake x estie編 -
estie
0
130
Terraform未経験の御様に対してどの ように導⼊を進めていったか
tkikuchi
2
450
Lexical Analysis
shigashiyama
1
150
OCI Security サービス 概要
oracle4engineer
PRO
0
6.5k
TypeScriptの次なる大進化なるか!? 条件型を返り値とする関数の型推論
uhyo
2
1.7k
SREによる隣接領域への越境とその先の信頼性
shonansurvivors
2
520
リンクアンドモチベーション ソフトウェアエンジニア向け紹介資料 / Introduction to Link and Motivation for Software Engineers
lmi
4
300k
テストコード品質を高めるためにMutation Testingライブラリ・Strykerを実戦導入してみた話
ysknsid25
7
2.6k
rootlessコンテナのすゝめ - 研究室サーバーでもできる安全なコンテナ管理
kitsuya0828
3
390
Featured
See All Featured
Fontdeck: Realign not Redesign
paulrobertlloyd
82
5.2k
Java REST API Framework Comparison - PWX 2021
mraible
PRO
28
8.2k
Building Better People: How to give real-time feedback that sticks.
wjessup
364
19k
Code Review Best Practice
trishagee
64
17k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
159
15k
Optimizing for Happiness
mojombo
376
70k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
38
1.8k
Agile that works and the tools we love
rasmusluckow
327
21k
Automating Front-end Workflow
addyosmani
1366
200k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
44
6.8k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
232
17k
Art, The Web, and Tiny UX
lynnandtonic
297
20k
Transcript
Azure入門 ・Azure Virtual Machine ・Azure App Service
Azure Virtual Machineの作 成 ・Microsoftチュートリアル https://docs.microsoft.com/ja- jp/azure/virtual- machines/windows/quick-create- portal
Azure Virtual MachineはIaaS Azure VM IIS(Webサーバ) アプリケーション
VM上で「C:¥inetpub¥wwwroot」を開き、index.htmlを配置する
Index.htmlの中身 <html> <head> <meta charset="utf-8"> <title>test</title> </head> <body> Hello Azure!
</body> </html>
デフォルトドキュメントの変更 サーバーマネジャーから「Internet information ~」を開く 「index.hmtl」をMoveUPで最上位 にする
再度、webサーバへアクセス
Azure App Serviceの作成 ・Microsoftチュートリアル https://docs.microsoft.com/ja- jp/azure/app-service/app-service- web-get-started-html
AppServiceはPaaS Azure VM IIS(Webサーバ) アプリケーション
Azure ポータルで「App Service」-「追加」-「Web App」-「作成」
以下の通り設定し、「作成」 完了したら「リソースに移動」
ブラウザからURLへアクセスしてみる
このような画面がでたら成功
デプロイセンターを開き、「FTP」を選択
3つの情報を控えます
FFFTPを起動し、ホスト名、ユーザ名、パスワードを入力しOK ダウンロードサイト: https://ja.osdn.net/projects/ffftp/
/site/wwwrootに新規で作った「index.html」をアップロードします (内容は前の手順参照)
もう一度、URLへアクセスしてみると・・・