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
210
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
170
azure入門(Azure Resource Manager)
yuta0910
0
250
Other Decks in Technology
See All in Technology
OCI技術資料 : コンピュート・サービス 概要
ocise
4
54k
越境する組織づくり ─ 多様性を前提にしたチームビルディングとリードの実践知
kido_engineer
2
190
vLLM Community Meetup Tokyo #3 オープニングトーク
jpishikawa
0
330
聲の形にみるアクセシビリティ
tomokusaba
0
170
Claude Code Skills 勉強会 (DevelersIO向けに調整済み) / claude code skills for devio
masahirokawahara
1
17k
OCHaCafe S11 #2 コンテナ時代の次の一手:Wasm 最前線
oracle4engineer
PRO
1
110
親子 or ペアで Mashup for the Future! しゃべって楽しむ 初手AI駆動でものづくり体験
hiroramos4
PRO
0
110
NewSQL_ ストレージ分離と分散合意を用いたスケーラブルアーキテクチャ
hacomono
PRO
3
270
When an innocent-looking ListOffsets Call Took Down Our Kafka Cluster
lycorptech_jp
PRO
0
120
楽しく学ぼう!コミュニティ入門 AWSと人が つむいできたストーリー
hiroramos4
PRO
1
190
マルチロールEMが実践する「組織のレジリエンス」を高めるための組織構造と人材配置戦略
coconala_engineer
3
720
The_Evolution_of_Bits_AI_SRE.pdf
nulabinc
PRO
0
160
Featured
See All Featured
How STYLIGHT went responsive
nonsquared
100
6k
Public Speaking Without Barfing On Your Shoes - THAT 2023
reverentgeek
1
330
Optimising Largest Contentful Paint
csswizardry
37
3.6k
Testing 201, or: Great Expectations
jmmastey
46
8.1k
AI Search: Where Are We & What Can We Do About It?
aleyda
0
7.1k
Automating Front-end Workflow
addyosmani
1370
200k
Exploring the relationship between traditional SERPs and Gen AI search
raygrieselhuber
PRO
2
3.7k
How to make the Groovebox
asonas
2
2k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
49
9.9k
Chasing Engaging Ingredients in Design
codingconduct
0
140
Facilitating Awesome Meetings
lara
57
6.8k
Bash Introduction
62gerente
615
210k
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へアクセスしてみると・・・