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
200
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
160
azure入門(Azure Resource Manager)
yuta0910
0
240
Other Decks in Technology
See All in Technology
マネジメントって難しい、けどおもしろい / Management is tough, but fun! #em_findy
ar_tama
7
1.1k
Operating Operator
shhnjk
1
600
React開発にStorybookとCopilotを導入して、爆速でUIを編集・確認する方法
yu_kod
1
290
開発生産性を組織全体の「生産性」へ! 部門間連携の壁を越える実践的ステップ
sudo5in5k
3
7.4k
VS CodeとGitHub Copilotで爆速開発!アップデートの波に乗るおさらい会 / Rapid Development with VS Code and GitHub Copilot: Catch the Latest Wave
yamachu
2
150
FOSS4G 2025 KANSAI QGISで点群データをいろいろしてみた
kou_kita
0
400
Glacierだからってコストあきらめてない? / JAWS Meet Glacier Cost
taishin
1
170
AI専用のリンターを作る #yumemi_patch
bengo4com
6
4.3k
AIの全社活用を推進するための安全なレールを敷いた話
shoheimitani
2
550
SRE不在の開発チームが障害対応と 向き合った100日間 / 100 days dealing with issues without SREs
shin1988
1
240
タイミーのデータモデリング事例と今後のチャレンジ
ttccddtoki
6
2.4k
ビズリーチが挑む メトリクスを活用した技術的負債の解消 / dev-productivity-con2025
visional_engineering_and_design
3
7.9k
Featured
See All Featured
Fantastic passwords and where to find them - at NoRuKo
philnash
51
3.3k
Art, The Web, and Tiny UX
lynnandtonic
299
21k
Become a Pro
speakerdeck
PRO
29
5.4k
Testing 201, or: Great Expectations
jmmastey
43
7.6k
Building Better People: How to give real-time feedback that sticks.
wjessup
367
19k
Rails Girls Zürich Keynote
gr2m
95
14k
A Modern Web Designer's Workflow
chriscoyier
695
190k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
53
2.9k
Agile that works and the tools we love
rasmusluckow
329
21k
The Pragmatic Product Professional
lauravandoore
35
6.7k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
48
2.9k
Being A Developer After 40
akosma
90
590k
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へアクセスしてみると・・・