gpt4 book ai didi

azure - 使用自定义 DNS 将 Azure Pack 连接到 Windows Server 的服务总线

转载 作者:行者123 更新时间:2023-12-03 04:34:55 26 4
gpt4 key购买 nike

我正在尝试将 Azure Pack 配置为使用带有自定义 DNS 的 Windows Server 1.1 服务总线。所有这些都在 Windows Azure 中的一台虚拟机 (Windows Server 2012 R2) 上运行。

我关注这篇文章:

http://roysvork.wordpress.com/2014/06/14/developing-against-service-bus-for-windows-1-1/

将 FramDNS“servicebus”替换为“mymachine.cloudapp.net”,并创建证书:

SelfSSL /N:CN=mymachine.cloudapp.net /V:1000 /T

在 Windows Azure 虚拟机上:

  • 我将设置 publuc DNS:mymachine.cloudapp.net
  • 开放端口:10354、10355、10356、10359、10000-10004
  • 在主机文件中:127.0.0.1 mymachine.cloudapp.net
  • 创建证书SelfSSL/N:CN=mymachine.cloudapp.net/V:1000/T

PowerShell:

Stop-SBFarm –Verbose
Set-SBFarm -FarmDns 'mymachine.cloudapp.net'
Update-SBHost –Verbose
Start-SBFarm –Verbose
New-SBAuthorizationRule -NamespaceName ServiceBusDefaultNamespace -Name MainRule -Rights Manage, Send, Listen

之后我可以使用 SAS 连接到我的 ServiceBusDefaultNamespace:

const string sharedAccessKeyName = "MainRule";
const string sharedAccessKey = "<key>";

var sasTokenProvider = TokenProvider.CreateSharedAccessSignatureTokenProvider(sharedAccessKeyName, sharedAccessKey);

string token = sasTokenProvider.GetWebTokenAsync("https://mymachine.cloudapp.net:10355/ServiceBusDefaultNamespace","NotUsedWithSAS", false, TimeSpan.FromSeconds(15)).Result;

var existingTokenProvider = TokenProvider.CreateSharedAccessSignatureTokenProvider(token);

var namespaceManger = new NamespaceManager("https://mymachine.cloudapp.net:10355/ServiceBusDefaultNamespace", existingTokenProvider);
var result = namespaceManger.TopicExists("DefaultTopic");

工作完美。但是,当我尝试从 Azure Pack 租户门户创建服务总线命名空间时 - 记录异常:

Namespace Provisioning Exception. TrackingId: . SystemId: . Namespace: SomeNamespace. Method: Activating. Exception: System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.Net.WebException: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel. ---> System.Security.Authentication.AuthenticationException: The remote certificate is invalid according to the validation procedure.

命名空间的状态 - 正在激活

请帮忙!

最佳答案

我找到了解决方案并撰写了有关使用自定义 DNS、“Black Jack”等为本地 Windows Server 配置服务总线的文章。用俄语发布,但包含许多屏幕截图和代码/脚本示例:

http://habrahabr.ru/post/254059/

描述:

如果不解释完整的配置过程,很难简单地回答。

基本上,证书存在问题:

在具有服务总线的虚拟机上:

1) 使用命令行实用程序生成访问证书ma​​kecert.exe:

(C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Bin)

    makecert.exe -r -pe -n "CN=hello-habr-sb.cloudapp.net, CN=hello-habr-sb" -e 11/11/2022 -eku 1.3.6.1.5.5.7.3.2 -ss My -sr "LocalMachine" -sky Exchange -a sha256 -sy 24 -len 2048 "hello-habr-sb.cloudapp.net.cer"

在服务器客户端上将其导入到证书 - 本地计算机(受信任的根 CA)。

2) 使用 PowerShell 更改 DNS:

    Get-SBFarm

Stop-SBFarm –Verbose

Set-SBFarm -FarmDns 'hello-habr-sb.cloudapp.net'

Update-SBHost –Verbose

Start-SBFarm –Verbose

3) 使用 PowerShell 设置 SAS-Key:

    New-SBAuthorizationRule -NamespaceName ServiceBusDefaultNamespace -Name MainRule -Rights Manage, Send, Listen

输出如下:

    KeyName             : MainRule
PrimaryKey : ylF6GWmH6rlZg1ekQMQrLQnht4kwVFWHAfyB8HkrZvM=
SecondaryKey : ZYBpdiCYgZNfwOC37x6DEDLxhv+qan6CJZT0vG3GvTk=
Rights : {Manage, Send, Listen}
CreatedTime : 3/22/2015 12:53:23 AM
ModifiedTime : 3/22/2015 12:53:23 AM
ConnectionString : Endpoint=sb://hello-habr-sb.cloudapp.net/ServiceBusDefaultNamespace;
StsEndpoint=https://hello-habr-sb.cloudapp.net:10355/ServiceBusDefaultNamespace;
RuntimePort=10354;
ManagementPort=10355;
SharedAccessKeyName=MainRule;
SharedAccessKey=ylF6GWmH6rlZg1ekQMQrLQnht4kwVFWHAfyB8HkrZvM=

4)添加主机链接:

(C:\Windows\System32\drivers\etc)

    127.0.0.1       hello-habr-sb.cloudapp.net

在带有 Azure Pack 的虚拟机上:

1) 使用命令行实用程序生成证书ma​​kecert.exe и pvk2pfx.exe:

(C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Bin)

对于服务器:

    makecert -r -pe -n "CN=WAP Portals" -ss CA -a sha1 -sky signature -cy authority -sv WAPPortals.pvk WAPPortals.cer

makecert -pe -n "CN=hello-habr-wap.cloudapp.net" -a sha1 -sky exchange -eku 1.3.6.1.5.5.7.3.1 -ic WAPPortals.cer -iv WAPPortals.pvk -sp "Microsoft RSA SChannel Cryptographic Provider" -sy 12 -sv WAPLocalServer.pvk WAPLocalServer.cer

pvk2pfx -pvk WAPLocalServer.pvk -spc WAPLocalServer.cer -pfx WAPLocalServer.pfx

对于客户:

    makecert -pe -n "CN=WAPMainDeveloper" -a sha1 -sky exchange -eku 1.3.6.1.5.5.7.3.2 -ic WAPPortals.cer -iv WAPPortals.pvk -sv WAPClient.pvk WAPClient.cer

pvk2pfx -pvk WAPClient.pvk -spc WAPClient.cer -pfx WAPClient.pfx -po HelloHabr2015

2) 在服务器上的证书 - 本地计算机(受信任的根 CA)中导入 WAPPortals.cer。

3) 在证书 - 本地计算机和当前用户(个人)中的服务器和客户端上导入 WAPClient.pfx。

4)添加主机链接:

(C:\Windows\System32\drivers\etc)

    127.0.0.1       hello-habr-wap.cloudapp.net

5) 使用 PowerShell(以管理员身份)更改 Azure Pack 管理站点的 FQDN 站点名称:

租户站点:

    Import-Module -Name MgmtSvcConfig

Set-MgmtSvcFqdn -Namespace "TenantSite" -FullyQualifiedDomainName "hello-habr-wap.cloudapp.net" -Port 30081 -Server "hello-habr-wap\SQLEXPRESS"

Set-MgmtSvcFqdn -Namespace "AuthSite" -FullyQualifiedDomainName "hello-habr-wap.cloudapp.net" -Port 30071 -Server "hello-habr-wap\SQLEXPRESS"

Set-MgmtSvcRelyingPartySettings -Target Tenant -MetadataEndpoint "https://hello-habr-wap.cloudapp.net:30071/FederationMetadata/2007-06/FederationMetadata.xml" -ConnectionString "Data Source=hello-habr-wap\SQLEXPRESS;User ID=sa;Password=HelloHabr2015" –DisableCertificateValidation

Set-MgmtSvcIdentityProviderSettings -Target Membership -MetadataEndpoint "https://hello-habr-wap.cloudapp.net:30081/FederationMetadata/2007-06/FederationMetadata.xml" -ConnectionString "Data Source=hello-habr-wap\SQLEXPRESS;User ID=sa;Password=HelloHabr2015" –DisableCertificateValidation

管理站点:

    Import-Module -Name MgmtSvcConfig

Set-MgmtSvcFqdn -Namespace "AdminSite" -FullyQualifiedDomainName "hello-habr-wap.cloudapp.net" -Port 30091 -Server "hello-habr-wap\SQLEXPRESS"

Set-MgmtSvcFqdn -Namespace "WindowsAuthSite" -FullyQualifiedDomainName "hello-habr-wap.cloudapp.net" -Port 30072 -Server "hello-habr-wap\SQLEXPRESS"

Set-MgmtSvcRelyingPartySettings -Target Admin -MetadataEndpoint "https://hello-habr-wap.cloudapp.net:30072/FederationMetadata/2007-06/FederationMetadata.xml" -ConnectionString "Data Source=hello-habr-wap\SQLEXPRESS;User ID=sa;Password=HelloHabr2015" –DisableCertificateValidation

Set-MgmtSvcIdentityProviderSettings -Target Windows -MetadataEndpoint "https://hello-habr-wap.cloudapp.net:30091/FederationMetadata/2007-06/FederationMetadata.xml" -ConnectionString "Data Source=hello-habr-wap\SQLEXPRESS;User ID=sa;Password=HelloHabr2015" –DisableCertificateValidation

6)做其他事情:

  • 更改 IIS 中的绑定(bind);

  • 选择 WAP 门户的 hello-habr-wap.cloudapp.net 证书;

  • 选中 IIS 上需要 SSL;

最后所有的工作都在 3 个虚拟机上运行:

  1. 数据库

    https://hello-habr-db.cloudapp.net:1433 - MSSQL Server
  2. Windows Server 服务总线

    https://hello-habr-sb.cloudapp.net:10355 - HttpPort (ManagementPort)
    https://hello-habr-sb.cloudapp.net:10354 - TcpPort (RuntimePort)
  3. 适用于 Windows Server 的 Azure Pack

    https://hello-habr-wap.cloudapp.net:30081 - TenantSite
    https://hello-habr-wap.cloudapp.net:30091 - AdminSite

希望这有帮助!如果您有一些错误 - 请阅读我的帖子(披露部分剧透):

http://habrahabr.ru/post/254059/

  1. 使用数据库配置虚拟机:

“Настройка виртуальной машины с базой данных”

  • 使用 Windows Server 的服务总线配置虚拟机:
  • “适用于 Windows Server 的服务总线”

  • 使用 Azure Pack 配置虚拟机:
  • “Настройка виртуальной машины с Azure Pack”

  • Windows Server 服务总线的简单 .NET (C#) 客户端:
  • “Проверка работы 服务总线”

    关于azure - 使用自定义 DNS 将 Azure Pack 连接到 Windows Server 的服务总线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27733701/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com