随笔分类 -  Azure

在 Windows Server Container 中运行 Azure Storage Emulator(三):运行在容器中
摘要:上一节中,我们已经准备好了 SQL Server,那么接下来,我们要把 ASE 放到容器里了。 首先,新建 Start.ps1,内容如下: Dockerfile: 或许把 AzureStorageEmulator.exe" init 放到 Dockerfile 里也是个好主意,但是这样每个环境都要 阅读全文
posted @ 2017-10-29 15:17 莱特 阅读(482) 评论(0) 推荐(0)
在 Windows Server Container 中运行 Azure Storage Emulator(二):使用自定义的 SQL Server Instance
摘要:上一节,我们解决了 Azure Storage Emulator 自定义监听地址的问题,这远远不够,因为在我们 DEV/QA 环境有各自的 SQL Server Instance,我们需要将 ASE 的数据库建到各自的 Instance 中。 先来看下 AzureStorageEmulator.ex 阅读全文
posted @ 2017-10-29 14:19 莱特 阅读(285) 评论(0) 推荐(0)
在 Windows Server Container 中运行 Azure Storage Emulator(一):能否监听自定义地址?
摘要:我要做什么? 要改变 ASE 的监听地址,首先要确认它有没有使用 HTTP Listener(即 HTTP.sys),否则无法支持端口共享。这个简单,运行起 ASE,netstat -ano 看到端口 10000-10002 的 PID 为 4,基本就可以断定了,但我们还是要进一步确认一下。 打开  阅读全文
posted @ 2017-10-29 13:33 莱特 阅读(257) 评论(0) 推荐(0)