Top Banner
Azure 網站開發 Kyle Shen Microsoft Azure
40

Global Azure Bootcamp 2015 at Study4

Aug 07, 2015

Download

Engineering

Kyle Shen
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Global Azure Bootcamp 2015 at Study4

Azure 網站開發

Kyle Shen

Microsoft Azure

Page 2: Global Azure Bootcamp 2015 at Study4

Agenda

•App Service (Website)介紹

•快速發行網站 & 新入口網站功能介紹

•對於開發人員的維護性

•實作並結合Azure服務

Page 3: Global Azure Bootcamp 2015 at Study4

關於我 Web

ASP.NET(Webform & MVC) for C#

MS SQL jQuery Angular.js

ASP.NET

ASP.NET

Study4

Blog –

Github : kyleap Kyle (凱爾)

Page 4: Global Azure Bootcamp 2015 at Study4

雲端有三種服務模式

•軟體即服務 SaaS(Software as a Service)• Gmail、Youtube、Office365…

•平台即服務 PaaS(Platform as a Service)• Azure Cloud Service、App Service

•基礎架構即服務 IaaS(Infrastructure as a Service)• Azure 虛擬機器

Page 5: Global Azure Bootcamp 2015 at Study4

在Azure上,三種掛載網站的方式

基礎架構即服務IaaS

平台即服務PaaS

Page 6: Global Azure Bootcamp 2015 at Study4

6

Page 7: Global Azure Bootcamp 2015 at Study4

非常快速的在雲端建立應用程式

Page 8: Global Azure Bootcamp 2015 at Study4

.NET

Python

支援多種語言

Node.js

Java

PHP

Page 9: Global Azure Bootcamp 2015 at Study4

Visual Studio + App Service

•建立專案即可與Azure資源連結

•發行Web專案可直接設定發行到Azure

•伺服器總管直接管理設定、管理網站

Page 10: Global Azure Bootcamp 2015 at Study4

GitHubVisual Studio

Online

Git BitBucketCodePlex DropBox FTP

或者選擇習慣的部署方式

Source Control

Page 11: Global Azure Bootcamp 2015 at Study4

Tech day 2014 -使用 Azure Web Site 打造雲端網站 全方位的網站管理、佈署與監控技巧

Page 12: Global Azure Bootcamp 2015 at Study4

Demo開始體驗Azure Website

12

Page 13: Global Azure Bootcamp 2015 at Study4

延展性(Scale)

Page 14: Global Azure Bootcamp 2015 at Study4

1 6執行個體計數 執行個體

Azure Web App 延展性 (手動)

Page 15: Global Azure Bootcamp 2015 at Study4

2 6

60 80

執行個體計數

CPU Percentage | Memory Percentage | Disk Queue Length | HTTP Queue Length | Data In | Data Out

Percent

執行個體

目標 CPU

Azure Web App 延展性 (自動)

Page 16: Global Azure Bootcamp 2015 at Study4

自動延展

Page 17: Global Azure Bootcamp 2015 at Study4

自動延展

Page 18: Global Azure Bootcamp 2015 at Study4

自動延展

Page 19: Global Azure Bootcamp 2015 at Study4

部署環境分離

Page 20: Global Azure Bootcamp 2015 at Study4

預備環境(Staging)

Page 21: Global Azure Bootcamp 2015 at Study4

預備環境(Staging)

Page 22: Global Azure Bootcamp 2015 at Study4

預備環境(Staging)

Page 23: Global Azure Bootcamp 2015 at Study4

預備環境(Staging)

Page 24: Global Azure Bootcamp 2015 at Study4

遠端偵錯

Page 25: Global Azure Bootcamp 2015 at Study4

遠端偵錯

•Visual Studio需安裝Azure SDK

•於入口網站開啟後48小時內會再關閉

•記得採用debug發行

Page 26: Global Azure Bootcamp 2015 at Study4

備份(Backup)

Page 27: Global Azure Bootcamp 2015 at Study4

Backups

Websites Settings ManifestDatabase (Optional)Websites Files

Page 28: Global Azure Bootcamp 2015 at Study4

Demo延展性 . 遠端偵錯 . 備份

28

Page 29: Global Azure Bootcamp 2015 at Study4

Study4 圖片牆

•ASP.NET MVC

•Azure DB (Sql Server or MySQL)

•Web Job

•Azure Storage• Azure Blob

• Azure Queue

12:38

Page 30: Global Azure Bootcamp 2015 at Study4

背景作業(Web Jobs)

Page 31: Global Azure Bootcamp 2015 at Study4

• on demand ( 依據任務需求執行 )

• continuously ( 持續執行 )

• on a schedule ( 排程 )

Web Jobs

Page 32: Global Azure Bootcamp 2015 at Study4

• .cmd, .bat, .exe (using windows cmd)

• .ps1 (using powershell)

• .sh (using bash)

• .php (using php)

• .py (using python)

• .js (using node)

Web Job支援類型

Page 33: Global Azure Bootcamp 2015 at Study4

• 圖形處理、大量CPU的工作

• Queue處理

• 檔案維護、清除Log

• 背景處理長時間之任務、寄送大量Mail

Web Job

Page 34: Global Azure Bootcamp 2015 at Study4

架構圖

Page 35: Global Azure Bootcamp 2015 at Study4

WebJobs

Page 36: Global Azure Bootcamp 2015 at Study4

WebJobs

Page 37: Global Azure Bootcamp 2015 at Study4

DemoWeb Job

37

Page 38: Global Azure Bootcamp 2015 at Study4

• 沒有前期費用

• 沒有終止費用

• 只要支付使用的部分

• 依分鐘計費

定價

Page 40: Global Azure Bootcamp 2015 at Study4

Thank You

•Study4 Facebook聊天社團

[email protected]

•Github : kyleap