在 Windows Server Container 中運行 Azure Storage Emulator(三):運行在容器中

来源:http://www.cnblogs.com/lighterz/archive/2017/10/29/7750116.html
-Advertisement-
Play Games

上一節中,我們已經準備好了 SQL Server,那麼接下來,我們要把 ASE 放到容器里了。 首先,新建 Start.ps1,內容如下: Dockerfile: 或許把 AzureStorageEmulator.exe" init 放到 Dockerfile 里也是個好主意,但是這樣每個環境都要 ...


  上一節中,我們已經準備好了 SQL Server,那麼接下來,我們要把 ASE 放到容器里了。

  首先,新建 Start.ps1,內容如下:

 1 param(
 2     [Parameter(Mandatory=$true)][string]$HostName,
 3     [string]$AccountName,
 4     [string]$AuthKey,
 5     [string]$SqlServerInstance)
 6 
 7 # Initialized?
 8 if (Test-Path Initialized)
 9 {
10     &"C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator\AzureStorageEmulator.exe" start -inporcess
11 }
12 
13 if ([string]::IsNullOrEmpty($AccountName))
14 {
15     Write-Output "AccountName argument not specified, use the default: devstoreaccount1"
16     $AccountName = "devstoreaccount1"
17 }
18 if ([string]::IsNullOrEmpty($AuthKey))
19 {
20     Write-Output "AuthKey argument not specified, use the default: Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw=="
21     $AuthKey = "Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw=="
22 }
23 if ([string]::IsNullOrEmpty($SqlServerInstance))
24 {
25     Write-Output "SqlServerInstance argument not specified, use the default: (localdb)\MSSQLLocalDB"
26     $SqlServerInstance = "(localdb)\MSSQLLocalDB"
27 }
28 
29 # Replace the configuration
30 $config = "C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator\AzureStorageEmulator.exe.config"
31 (get-content $config)`
32     -Replace "<service name=""Blob"" url=""http://127.0.0.1:10000/""/>", "<service name=""Blob"" url=""http://$AccountName.blob.$HostName/"" />"`
33     -Replace "<service name=""Queue"" url=""http://127.0.0.1:10001/""/>", "<service name=""Queue"" url=""http://$AccountName.queue.$HostName/"" />"`
34     -Replace"<service name=""Table"" url=""http://127.0.0.1:10002/""/>", "<service name=""Table"" url=""http://$AccountName.table.$HostName/"" />"`
35     -Replace "<account name=""devstoreaccount1"" authKey=""Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw=="" />",`
36         "<account name=""$AccountName"" authKey=""$AuthKey"" />"`
37         | Out-File $config
38 
39 # Init the emulator
40 & "C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator\AzureStorageEmulator.exe" init -server $SqlServerInstance
41 
42 # Set Initialized flag
43 New-Item Initialized
44 
45 # Start!
46 & "C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator\AzureStorageEmulator.exe" start -inprocess

 

  Dockerfile:

# escape=`

FROM microsoft/windowsservercore

ADD https://go.microsoft.com/fwlink/?linkid=717179&clcid=0x409 MicrosoftAzureStorageEmulator.msi
RUN msiexec /q /i MicrosoftAzureStorageEmulator.msi
RUN del MicrosoftAzureStorageEmulator.msi
COPY Start.ps1 .

# Azure Storage Emulator
EXPOSE 80

# Configure and launch
ENTRYPOINT powershell .\Start.ps1

 

  或許把 AzureStorageEmulator.exe" init 放到 Dockerfile 里也是個好主意,但是這樣每個環境都要 build 不同的 image,這不是我想要的。

  現在可以 Build 我們的 image 了:

docker build -t charmsan/azurestorageemulator .

 

  為了使用 gMSA 運行容器,還有一步(有關容器中使用 gMSA,請見我的另一篇博文:《在 Windows 容器中使用 gMSA》):

New-CredentialSpec -Name AseSvc -AccountName AseSvc

 

  Launch!

docker run -it -h ASE-DEV --name AzureStorageEmulator-Dev --network external --ip 192.168.11.1 --dns 192.168.15.1 --dns 192.168.15.2 --security-opt "credentialspec=file://AseSvc.json" --restart unless-stopped charmsan/azurestorageemulator -HostName contoso.com -AccountName dev -SqlServerInstance CONTOSO-ENV-DB\CONTOSO_DEV

 

  運行結果:

 

  請無視掉裡面的兩個錯誤,配置 Azure Storage Explorer 連接:

 

  運行結果:

 

  現在,我們可以修改 Web.Debug.config 來把連接串 transform 一下了:

    <add xdt:Transform="SetAttributes" xdt:Locator="Match(key)" key="StorageAccountConnectionString" value="DefaultEndpointsProtocol=http;AccountName=dev;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://dev.blob.contoso.com/dev;" />

 

  不要問我連接串中的 URL 為什麼長成這樣子,因為你肯定沒認真看第一節:)


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 在Android遠程桌面助手工具軟體中增加了監測系統CPU、GPU、Thermal、電池等狀態信息的功能。 ...
  • 問題原因 vmware installer 不能正確識別GCC 7 (f26使用 Red Hat GCC 7.1.1) [VMware已經發佈新版本14.0.0,支持fedora26,但記憶體管理部分有問題,好像是linux內核有了變動,造成開啟虛擬機提示記憶體錯誤或虛擬機關閉後不會釋放記憶體空間] 解決 ...
  • 在Linux中所有的東西都對應著一個文件。 root:/sbin/usr/sbin all users:/bin/usr/bin bin: binary usr: user sbin: super binary -a : all -l: long: drwxr-xr-x 文件類型: d 目錄dire ...
  • 我下載了網路安裝版的centos,文件名是:Centos-7-x86_64-NetInstall.iso。總是安裝不正確。卡就卡在安裝源這裡。 反覆搜索沒有結果,試了163的源也不行,鏡像列表哪裡打鉤不打鉤完全沒用。 最後使用阿裡雲終於解決問題。 前面選擇https,後面是:mirrors.aliy ...
  • 第1章 常用的軟體 <!--[if !supportLists]-->1.1 <!--[endif]-->常用來提供靜態服務的軟體 <!--[if !supportLists]-->1.2 <!--[endif]-->常用來提供動態服務的軟體 <!--[if !supportLists]-->第2章 ...
  • Eclipse可以安裝在各種操作系統。這裡是安裝到Ubuntu 10.10上。有兩種方法實現安裝,一是採用Ubuntu的軟體源;二是從官方下載後解壓。 1、 通過Ubuntu軟體源安裝 $ sudo apt-get install build-essential $ sudo apt-get ins ...
  • 一.背景1.1 jello@jello:~$ lsb_release -aNo LSB modules are available.Distributor ID: UbuntuDescription: Ubuntu 16.04.3 LTSRelease: 16.04Codename: xenial1 ...
  • 近來在複習防火牆管理工具 iptables 的基本使用方法,涉及到對埠添加或刪除防火牆策略的內容,之前對ssh更改預設埠號及免密碼登錄的方法不熟悉,這次做一個基本的總結防止自己遺忘。 錯誤偏差及其他經驗之處,還望各位多多指出! 系統環境:兩台 RHEL 7 登錄主機:master.domain1 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...