The SQL Server Network Interface library could not register the Service Principal Name (SPN) [ MSSQLSvc/iZ23xvjchsrZ:1433 ] for the SQL Server service. Windows return code: 0xffffffff, state: 63. Failure to register a SPN might cause integrated authentication to use NTLM instead of Kerberos. This is an informational message. Further action is only required if Kerberos authentication is required by authentication policies and if the SPN has not been manually registered.
SQL Server is attempting to register a Service Principal Name (SPN) for the SQL Server service. Kerberos authentication will not be possible until a SPN is registered for the SQL Server service. This is an informational message. No user action is required.
Server local connection provider is ready to accept connection on [ \\.\pipe\sql\query ].
uj5u.com熱心網友回復:
你們為什么 Kerberos認證呢?
uj5u.com熱心網友回復:
你sql server 運行用的什么賬號
uj5u.com熱心網友回復:
sa 賬號,我看網上說 是不是強制密碼策略的問題 現在是勾選的,但是我重啟了服務器就好了
uj5u.com熱心網友回復:
不是上面的報錯是說你用的windows認證,,你們前端程式都用的sql認證就是(sa)嗎?
uj5u.com熱心網友回復:
是的前端都是sa 登錄 。。
uj5u.com熱心網友回復:
那這個報錯可能跟你連接不上沒有直接關系.你前端連接不上的時候,提示什么錯誤
uj5u.com熱心網友回復:
基礎提供程式在 Open 上失敗。 ---> System.Data.SqlClient.SqlException: 在與 SQL Server 建立連接時出現與網路相關的或特定于實體的錯誤。未找到或無法訪問服務器。請驗證實體名稱是否正確并且 SQL Server 已配置為允許遠程連接。 (provider: Named Pipes Provider, error: 40 - 無法打開到 SQL Server 的連接) ---> System.ComponentModel.Win32Exception: 找不到網路路徑。
**桔妹導讀:**深耕人工智能領域,致力于探索AI讓出行更美好的滴滴AI Labs再次斬獲國際大獎,這次獲獎的專案是什么呢?一起來看看詳細報道吧! 近日,由國際計算語言學協會ACL(The Association for Computational Linguistics)舉辦的世界最具影響力的機器 ......
我們經常在資料庫中使用 LIKE 運算子來完成對資料的模糊搜索,LIKE 運算子用于在 WHERE 子句中搜索列中的指定模式。 如果需要查找客戶表中所有姓氏是“張”的資料,可以使用下面的 SQL 陳述句: SELECT * FROM Customer WHERE Name LIKE '張%' 如果需要 ......
關于MySQL的二進制日志(binlog),我們都知道二進制日志(binlog)非常重要,尤其當你需要point to point災難恢復的時侯,所以我們要對其進行備份。關于二進制日志(binlog)的備份,可以基于flush logs方式先切換binlog,然后拷貝&壓縮到到遠程服務器或本地服務器 ......