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
Getting to Know Your Legacy (System) with AI-Driven Software Archeology (WeAreDevelopers World Congress 2025)
feststelltaste
1
130
ゼロからはじめる採用広報
yutadayo
3
930
OPENLOGI Company Profile for engineer
hr01
1
34k
AI時代の開発生産性を加速させるアーキテクチャ設計
plaidtech
PRO
3
160
CRE Camp #1 エンジニアリングを民主化するCREチームでありたい話
mntsq
1
120
Lazy application authentication with Tailscale
bluehatbrit
0
210
タイミーのデータモデリング事例と今後のチャレンジ
ttccddtoki
6
2.4k
CDKTFについてざっくり理解する!!~CloudFormationからCDKTFへ変換するツールも作ってみた~
masakiokuda
1
140
スタートアップに選択肢を 〜生成AIを活用したセカンダリー事業への挑戦〜
nstock
0
190
開発生産性を測る前にやるべきこと - 組織改善の実践 / Before Measuring Dev Productivity
kaonavi
10
4.4k
20250705 Headlamp: 專注可擴展性的 Kubernetes 用戶界面
pichuang
0
270
OSSのSNSツール「Misskey」をさわってみよう(右下ワイプで私のOSCの20年を振り返ります) / 20250705-osc2025-do
akkiesoft
0
160
Featured
See All Featured
Facilitating Awesome Meetings
lara
54
6.4k
The Illustrated Children's Guide to Kubernetes
chrisshort
48
50k
Designing for Performance
lara
610
69k
Git: the NoSQL Database
bkeepers
PRO
430
65k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
StorybookのUI Testing Handbookを読んだ
zakiyama
30
5.9k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
48
2.9k
How to Ace a Technical Interview
jacobian
278
23k
A Tale of Four Properties
chriscoyier
160
23k
Being A Developer After 40
akosma
90
590k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
138
34k
Designing for humans not robots
tammielis
253
25k
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へアクセスしてみると・・・