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
170
azure入門(Azure Resource Manager)
yuta0910
0
250
Other Decks in Technology
See All in Technology
[Codex Meetup Japan #1] Codex-Powered Mobile Apps Development
korodroid
2
1k
All About Sansan – for New Global Engineers
sansan33
PRO
1
1.2k
事業開発におけるDify活用事例
kentarofujii
2
680
「改善」ってこれでいいんだっけ?
ukigmo_hiro
0
370
Biz職でもDifyでできる! 「触らないAIワークフロー」を実現する方法
igarashikana
3
780
組織改革から開発効率向上まで! - 成功事例から見えたAI活用のポイント - / 20251016 Tetsuharu Kokaki
shift_evolve
PRO
1
170
Performance Insights 廃止から Database Insights 利用へ/transition-from-performance-insights-to-database-insights
emiki
0
320
AI Agent Dojo #2 watsonx Orchestrateフローの作成
oniak3ibm
PRO
0
130
新規事業におけるGORM+SQLx併用アーキテクチャ
hacomono
PRO
0
420
Databricks AI/BI Genie の「値ディクショナリー」をAmazonの奥地(S3)まで見に行く
kameitomohiro
1
300
難しいセキュリティ用語をわかりやすくしてみた
yuta3110
0
330
AI-Readyを目指した非構造化データのメダリオンアーキテクチャ
r_miura
1
170
Featured
See All Featured
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.4k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
46
2.5k
Keith and Marios Guide to Fast Websites
keithpitt
411
23k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3.1k
[RailsConf 2023] Rails as a piece of cake
palkan
57
5.9k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
Scaling GitHub
holman
463
140k
For a Future-Friendly Web
brad_frost
180
10k
RailsConf 2023
tenderlove
30
1.3k
Building Flexible Design Systems
yeseniaperezcruz
329
39k
The Cult of Friendly URLs
andyhume
79
6.6k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
55
3k
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へアクセスしてみると・・・