你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
当客户端连接到 Service Fabric 群集节点时,可以使用证书安全性或 Microsoft Entra ID 与客户端建立经过身份验证的安全通信。 此身份验证可确保只有经过授权的用户才能访问该群集和部署的应用程序,以及执行管理任务。 创建群集时,必须事先在该群集上启用证书或 Microsoft Entra 安全性。 有关群集安全方案的详细信息,请参阅群集安全性。 如果要连接到使用证书保护的群集,请在计算机上设置连接到群集的 客户端证书 。
使用 Azure Service Fabric CLI (sfctl) 连接到安全群集
可以通过多种不同方式使用 Service Fabric CLI (sfctl) 连接到安全群集。 使用客户端证书进行身份验证时,证书详细信息必须与部署到群集节点的证书匹配。 如果证书具有证书颁发机构 (CA),则需要另外指定受信任的 CA。
可以使用 sfctl cluster select
命令连接到群集。
可以通过两种不同方式指定客户端证书:作为证书和密钥对,或作为单个 PFX 文件。 对于受密码保护的 PEM 文件,系统会自动提示你输入密码。 如果将客户端证书作为 PFX 文件获取,请先使用以下命令将 PFX 文件转换为 PEM 文件。
openssl pkcs12 -in your-cert-file.pfx -out your-cert-file.pem -nodes -passin pass:your-pfx-password
如果 .pfx 文件不受密码保护,请使用 -passin pass: 作为最后一个参数。
若要将客户端证书指定为 pem 文件,请在 --pem
参数中指定文件路径。 例如:
sfctl cluster select --endpoint https://testsecurecluster.com:19080 --pem ./client.pem
在运行任何命令之前,受密码保护的 pem 文件将提示用户输入密码。
若要指定证书,密钥对将使用 --cert
和 --key
参数来指定每个相应文件的文件路径。
sfctl cluster select --endpoint https://testsecurecluster.com:19080 --cert ./client.crt --key ./keyfile.key
有时用于保护测试或开发群集的证书未通过证书验证。 若要绕过证书验证,请指定 --no-verify
选项。 例如:
警告
连接到生产 Service Fabric 群集时不要使用 no-verify
此选项。
sfctl cluster select --endpoint https://testsecurecluster.com:19080 --pem ./client.pem --no-verify
此外,可以指定受信任 CA 证书或单个证书的目录的路径。 若要指定这些路径,请使用 --ca
参数。 例如:
sfctl cluster select --endpoint https://testsecurecluster.com:19080 --pem ./client.pem --ca ./trusted_ca
连接后,应能够运行其他 sfctl 命令与群集进行交互。
使用 PowerShell 连接到群集
通过 PowerShell 对群集执行操作之前,请先建立与群集的连接。 群集连接用于给定 PowerShell 会话中的所有后续命令。
连接到不安全的群集
要连接到不安全的群集,请将群集终结点地址提供给 Connect-ServiceFabricCluster 命令:
Connect-ServiceFabricCluster -ConnectionEndpoint <Cluster FQDN>:19000
使用 Microsoft Entra ID 连接到安全群集
若要连接到使用 Microsoft Entra ID 授权群集管理员访问权限的安全集群,请提供群集证书指纹,并使用 AzureActiveDirectory 标志。
Connect-ServiceFabricCluster -ConnectionEndpoint <Cluster FQDN>:19000 `
-ServerCertThumbprint <Server Certificate Thumbprint> `
-AzureActiveDirectory
使用客户端证书连接到安全群集
运行以下 PowerShell 命令,连接到使用客户端证书对管理员访问授权的安全群集。
使用证书公用名称连接
提供群集证书公用名称,以及已被授予群集管理权限的客户端证书的公用名称。 证书详细信息必须与群集节点上的证书匹配。
Connect-serviceFabricCluster -ConnectionEndpoint $ClusterName -KeepAliveIntervalInSec 10 `
-X509Credential `
-ServerCommonName <certificate common name> `
-FindType FindBySubjectName `
-FindValue <certificate common name> `
-StoreLocation CurrentUser `
-StoreName My
ServerCommonName 是群集节点上安装的服务器证书的公用名称。 FindValue 是管理客户端证书的公用名称。 填充参数以后,命令将如以下示例所示:
$ClusterName= "sf-commonnametest-scus.southcentralus.cloudapp.azure.com:19000"
$certCN = "sfrpe2eetest.southcentralus.cloudapp.azure.com"
Connect-serviceFabricCluster -ConnectionEndpoint $ClusterName -KeepAliveIntervalInSec 10 `
-X509Credential `
-ServerCommonName $certCN `
-FindType FindBySubjectName `
-FindValue $certCN `
-StoreLocation CurrentUser `
-StoreName My
使用证书指纹进行连接
提供群集证书指纹,以及已被授予群集管理权限的客户端证书的指纹。 证书详细信息必须与群集节点上的证书匹配。
Connect-ServiceFabricCluster -ConnectionEndpoint <Cluster FQDN>:19000 `
-KeepAliveIntervalInSec 10 `
-X509Credential -ServerCertThumbprint <Certificate Thumbprint> `
-FindType FindByThumbprint -FindValue <Certificate Thumbprint> `
-StoreLocation CurrentUser -StoreName My
ServerCertThumbprint 是群集节点上安装的服务器证书的指纹。 FindValue 是管理客户端证书的指纹。 填充参数以后,命令将如以下示例所示:
Connect-ServiceFabricCluster -ConnectionEndpoint clustername.westus.cloudapp.azure.com:19000 `
-KeepAliveIntervalInSec 10 `
-X509Credential -ServerCertThumbprint AA11BB22CC33DD44EE55FF66AA77BB88CC99DD00 `
-FindType FindByThumbprint -FindValue BB22CC33DD44EE55FF66AA77BB88CC99DD00EE11 `
-StoreLocation CurrentUser -StoreName My
使用 Windows Active Directory 连接到安全群集
如果使用 AD 安全性部署独立群集,请通过附加开关项“WindowsCredential”连接到群集。
Connect-ServiceFabricCluster -ConnectionEndpoint <Cluster FQDN>:19000 `
-WindowsCredential
使用 FabricClient API 连接到群集
Service Fabric SDK 提供用于群集管理的 FabricClient 类。 若要使用 FabricClient API,请获取 Microsoft.ServiceFabric NuGet 包。
连接到不安全的群集
若要连接到远程的不安全群集,请创建 FabricClient 实例并提供群集地址:
FabricClient fabricClient = new FabricClient("clustername.westus.cloudapp.azure.com:19000");
对于从群集内部运行的代码(例如在可靠服务中运行的代码),可在不 指定群集地址的情况下创建 FabricClient。 FabricClient 可连接到代码当前运行节点的本地管理网关,避免额外的网络跳跃。
FabricClient fabricClient = new FabricClient();
使用客户端证书连接到安全群集
群集中的节点必须具有有效的证书,在 SAN 中,这些证书的公用名或 DNS 名出现在 FabricClient 上设置的 RemoteCommonNames 属性中。 按此过程操作就可以在客户端与群集节点之间进行相互身份验证。
using System.Fabric;
using System.Security.Cryptography.X509Certificates;
string clientCertThumb = "BB22CC33DD44EE55FF66AA77BB88CC99DD00EE11";
string serverCertThumb = "AA11BB22CC33DD44EE55FF66AA77BB88CC99DD00";
string CommonName = "www.clustername.westus.azure.com";
string connection = "clustername.westus.cloudapp.azure.com:19000";
var xc = GetCredentials(clientCertThumb, serverCertThumb, CommonName);
var fc = new FabricClient(xc, connection);
try
{
var ret = fc.ClusterManager.GetClusterManifestAsync().Result;
Console.WriteLine(ret.ToString());
}
catch (Exception e)
{
Console.WriteLine("Connect failed: {0}", e.Message);
}
static X509Credentials GetCredentials(string clientCertThumb, string serverCertThumb, string name)
{
X509Credentials xc = new X509Credentials();
xc.StoreLocation = StoreLocation.CurrentUser;
xc.StoreName = "My";
xc.FindType = X509FindType.FindByThumbprint;
xc.FindValue = clientCertThumb;
xc.RemoteCommonNames.Add(name);
xc.RemoteCertThumbprints.Add(serverCertThumb);
xc.ProtectionLevel = ProtectionLevel.EncryptAndSign;
return xc;
}
使用 Microsoft Entra ID 以交互方式连接到安全群集
以下示例使用 Microsoft Entra ID 作为客户端标识,使用服务器证书作为服务器标识。
连接到群集后,会自动弹出一个用于交互式登录的对话框窗口。
string serverCertThumb = "AA11BB22CC33DD44EE55FF66AA77BB88CC99DD00";
string connection = "clustername.westus.cloudapp.azure.com:19000";
var claimsCredentials = new ClaimsCredentials();
claimsCredentials.ServerThumbprints.Add(serverCertThumb);
var fc = new FabricClient(claimsCredentials, connection);
try
{
var ret = fc.ClusterManager.GetClusterManifestAsync().Result;
Console.WriteLine(ret.ToString());
}
catch (Exception e)
{
Console.WriteLine("Connect failed: {0}", e.Message);
}
使用 Microsoft Entra ID 以非交互方式连接到安全群集
以下示例依赖于 Microsoft.Identity.Client,版本:4.37.0。
有关 Microsoft Entra 令牌获取的详细信息,请参阅 Microsoft.Identity.Client。
string tenantId = "aaaabbbb-0000-cccc-1111-dddd2222eeee";
string clientApplicationId = "33334444-dddd-5555-eeee-6666ffff7777";
string webApplicationId = "00001111-aaaa-2222-bbbb-3333cccc4444";
string[] scopes = new string[] { "user.read" };
var pca = PublicClientApplicationBuilder.Create(clientApplicationId)
.WithAuthority($"https://login.microsoftonline.com/{tenantId}")
.WithRedirectUri("urn:ietf:wg:oauth:2.0:oob")
.Build();
var accounts = await pca.GetAccountsAsync();
var result = await pca.AcquireTokenInteractive(scopes)
.WithAccount(accounts.FirstOrDefault())
.ExecuteAsync();
string token = result.AccessToken;
string serverCertThumb = "AA11BB22CC33DD44EE55FF66AA77BB88CC99DD00";
string connection = "clustername.westus.cloudapp.azure.com:19000";
var claimsCredentials = new ClaimsCredentials();
claimsCredentials.ServerThumbprints.Add(serverCertThumb);
claimsCredentials.LocalClaims = token;
var fc = new FabricClient(claimsCredentials, connection);
try
{
var ret = fc.ClusterManager.GetClusterManifestAsync().Result;
Console.WriteLine(ret.ToString());
}
catch (Exception e)
{
Console.WriteLine("Connect failed: {0}", e.Message);
}
无需事先了解元数据,即可使用 Microsoft Entra ID 连接到安全群集
以下示例使用非交互式令牌获取过程,但可以相同的方法构建自定义交互式令牌获取体验。 从群集配置中读取令牌获取所需的 Microsoft Entra 元数据。
string serverCertThumb = "AA11BB22CC33DD44EE55FF66AA77BB88CC99DD00";
string connection = "clustername.westus.cloudapp.azure.com:19000";
var claimsCredentials = new ClaimsCredentials();
claimsCredentials.ServerThumbprints.Add(serverCertThumb);
var fc = new FabricClient(claimsCredentials, connection);
fc.ClaimsRetrieval += async (o, e) =>
{
var accounts = await PublicClientApplicationBuilder
.Create("<client_id>")
.WithAuthority(AzureCloudInstance.AzurePublic, "<tenant_id>")
.WithRedirectUri("<redirect_uri>")
.Build()
.GetAccountsAsync();
var result = await PublicClientApplicationBuilder
.Create("<client_id>")
.WithAuthority(AzureCloudInstance.AzurePublic, "<tenant_id>")
.WithRedirectUri("<redirect_uri>")
.Build()
.AcquireTokenInteractive(new[] { "<scope>" })
.WithAccount(accounts.FirstOrDefault())
.ExecuteAsync();
return result.AccessToken;
};
try
{
var ret = fc.ClusterManager.GetClusterManifestAsync().Result;
Console.WriteLine(ret.ToString());
}
catch (Exception e)
{
Console.WriteLine("Connect failed: {0}", e.Message);
}
使用 Service Fabric Explorer 连接到安全群集
要访问给定群集的 Service Fabric Explorer,请将浏览器指向:
http://<your-cluster-endpoint>:19080/Explorer
Azure 门户的群集基本信息窗格中也提供了完整 URL。
若要使用浏览器连接到 Windows 或 OS X 上的安全群集,可以导入客户端证书,浏览器将提示你提供要用于连接群集的证书。 在 Linux 计算机上,必须使用高级浏览器设置(每个浏览器具有不同的机制)导入证书,并将其指向磁盘上的证书位置。 有关详细信息,请阅读设置客户端证书。
使用 Microsoft Entra ID 连接到安全群集
要连接到用 Microsoft Entra ID 保护的群集,请将浏览器指向:
https://<your-cluster-endpoint>:19080/Explorer
系统会自动提示你使用 Microsoft Entra ID 登录。
使用客户端证书连接到安全群集
要连接到使用证书进行保护的群集,请将浏览器指向:
https://<your-cluster-endpoint>:19080/Explorer
系统会自动提示你选择客户端证书。
设置远程计算机上的客户端证书
至少应有两个证书用于保护群集,一个用于保护群集和服务器证书,另一个用于保护客户端访问。 我们还建议使用辅助证书和客户端访问证书。 若要使用证书安全性来保护客户端与与群集节点之间的通信,必须先获取并安装客户端证书。 证书可以安装到本地计算机或当前用户的个人(我的)存储。 还需要服务器证书的指纹,以便客户端可以对群集进行身份验证。
在 Windows 上:双击 PFX 文件,按提示在个人存储
Certificates - Current User\Personal\Certificates
中安装证书。 或者,可以使用 PowerShell 命令:Import-PfxCertificate -Exportable -CertStoreLocation Cert:\CurrentUser\My ` -FilePath C:\docDemo\certs\DocDemoClusterCert.pfx ` -Password (ConvertTo-SecureString -String test -AsPlainText -Force)
如果是自签名证书,则需要先将其导入计算机的“受信任人”存储,然后才能使用此证书连接到安全群集。
Import-PfxCertificate -Exportable -CertStoreLocation Cert:\CurrentUser\TrustedPeople ` -FilePath C:\docDemo\certs\DocDemoClusterCert.pfx ` -Password (ConvertTo-SecureString -String test -AsPlainText -Force)
在 Mac 上:双击 PFX 文件,按提示在 Keychain 中安装证书。