91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

AlwaysOn業務IP和高可用IP分開使用(三)

發布時間:2020-07-09 03:06:59 來源:網絡 閱讀:730 作者:UltraSQL 欄目:MySQL數據庫

方案二:主備源IP用于AG通信、主備新增網卡綁定IP用于業務訪問

AlwaysOn業務IP和高可用IP分開使用(三)


測試環境描述:

AG角色

主機名

網絡適配器

IP地址

主庫

TEST-GS-ZHXT1

Ethernet0

10.198.197.167

Ethernet1

10.198.197.173



備庫

TEST-GS-ZHXT2

Ethernet0

10.198.197.168

Ethernet1

10.198.197.174



災備

TEST-GS-ZHXT3

Ethernet0

10.198.194.183


總體思路:

將業務使用的網卡和高可用使用的網卡分開,高可用優先使用到Ethernet 0,配置網卡優先級。在故障切換時WSFC和AG優先使用Ethernet 0通信。業務訪問使用的是SQL賬號,無需Kerberos驗證,是SQL驗證。


調整網卡優先級:

開始->運行->輸入“ncpa.cpl”->快捷鍵“Alt+N”->高級設置

AlwaysOn業務IP和高可用IP分開使用(三)

將源IP綁定的網絡適配器如Ethernet0優先級調整到最一個。


對于訪問的業務應用IP添加靜態路由:

由于主機只能有一個默認網關,已設置到源IP綁定的網絡適配器如Ehernet0上。對于需要訪問新增IP的業務應用,需要使用route add -p添加靜態路由,并使用if參數指定具體的網絡適配器接口ID。


遠程Windows驗證登錄SQL Server實例使用Kerberos驗證:

使用域賬號遠程登錄SQL Server實例,查看驗證方式:

select * from sys.dm_exec_connections where session_id=@@spid;


無法使用Kerberos驗證,使用的是NTLM。

參考:https://technet.microsoft.com/en-us/library/bb463166.aspx


打開Kerberos日志調試:

On an Active Directory server, Kerberos error messages are found in the Event Log. It is necessary to enable extended Kerberos logging before all message types will appear. To enable extended Kerberos logging, add a DWORD registry entry of LogLevel in the following location, and set it to 1:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\Kerberos\Parameters

The server must be started after this change before the logging will be implemented.

Error

ErrorName

Description

0x7

KDC_ERR_S_PRINCIPAL_UNKNOWN

Server not found in Kerberos database


根據錯誤判斷,應該是SPN未注冊或未正確注冊。


參考:https://technet.microsoft.com/en-us/library/bb463167.aspx

Common DNS Issues

DNS problems are often encountered only during a service ticket request after a successful TGT request. If a client can successfully authenticate initially but is then unable to acquire a service ticket or access services, then DNS problems are the likely cause.

The error “Server not found in Kerberos database” is common and can be misleading because it often appears when the service principal is not missing. The error can be caused by domain/realm mapping problems or it can be the result of a DNS problem where the service principal name is not being built correctly. Server logs and network traces can be used to determine what service principal is actually being requested.

Kerberos recognizes short host names as different from long host names. For example, problems may occur if a client computer knows an application server as appserver1.example.com, but the Kerberos server knows the same computer as appserver1. Check that each host in the environment knows the others by using a consistent naming pattern.

Kerberos is case sensitive. Problems can occur in an environment using host names with mixed case. In the world of Kerberos, appserver1.EXAMPLE.COM and appserver1.example.com are not the same. Check that DNS resolves host names with consistent case.

Kerberos relies on the presence of both forward and reverse lookup entries in DNS. Check that the host name of each computer can be resolved to its IP address and that its IP address can be resolved to its host name.

DNS domain name ambiguities in a multidomain environment can result in subtle DNS issues. Check that each computer knows the others using the same domain name. Avoiding the use of short host names is particularly important in a multidomain environment.

Look carefully at the configuration of any multihomed hosts. You might need to perform network traces to determine which interfaces and what names are being used in requests to or from computers with multiple network cards.


根據上文中 “Kerberos relies on the presence of both forward and reverse lookup entries in DNS.”對于綁定了新的網卡的IP,需要到DNS去做反向解析。如下圖:

AlwaysOn業務IP和高可用IP分開使用(三)

再去驗證連接,就是Kerberos驗證了。


參考:https://blogs.msdn.microsoft.com/apgcdsd/2011/09/26/kerberosntlm-sql-server/

SQL Server 2008/2008 R2

1) 當SPN被映射到正確的域或者內建機器賬號時 (Local System, Network Service),本地連接會使用NTLM,而遠程連接會使用Kerberos。

2) 當沒有找到注冊在正確的域或內建機器賬號下的SPN時,連接會使用NTLM。

3) 當域中存在錯誤的SPN時,認證失敗。

具體Kerberos驗證的過程,可以參考:https://blogs.technet.microsoft.com/askds/2008/03/06/kerberos-for-the-busy-admin/


測試:

1. 從AG移除備節點,切換10.198.197.173和10.198.197.174,通過167和168登錄服務器,修改Ethernet 1的IP地址后,禁用啟用網卡。DNS反向查找區域中刪除原來的解析,添加新對應關系的地址解析。

AlwaysOn業務IP和高可用IP分開使用(三)


查看WSFC狀態:

AlwaysOn業務IP和高可用IP分開使用(三)

AlwaysOn業務IP和高可用IP分開使用(三)

通過Windows驗證遠程訪問10.198.197.173和174,查看是否使用Kerberos驗證:

AlwaysOn業務IP和高可用IP分開使用(三)

AlwaysOn業務IP和高可用IP分開使用(三)

AlwaysOn業務IP和高可用IP分開使用(三)

都能遠程訪問數據庫服務。


2. 業務切換到備庫測試完畢后,IP切換回來。

都能遠程訪問數據庫服務。


總結:

方案二能滿足業務IP和高可用IP分開使用的需求。能保證WSFC和AG對Ethernet 0的優先穩定使用,保證集群的安全可靠。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

静宁县| 罗定市| 通化县| 九寨沟县| 德昌县| 含山县| 黄冈市| 阜平县| 江口县| 泗洪县| 河间市| 姜堰市| 奉化市| 宁南县| 伽师县| 伊宁市| 亳州市| 肥城市| 资阳市| 剑河县| 沙河市| 安图县| 苍南县| 永嘉县| 六安市| 卢龙县| 永登县| 尚义县| 博白县| 新安县| 明星| 武川县| 灵璧县| 夏河县| 武宣县| 济宁市| 普兰店市| 酒泉市| 兴和县| 额敏县| 河曲县|