標籤:sccm wsus sql
使用SCCM2012管理WSUS補丁派發,在安裝WSUS4.0、添加站台系統角色(軟體更新點)、同步軟體更新操作後,開啟WSUS控制台可以看到同步進程,同步成功後開啟SCCM“所有軟體更新”,顯示“未找到任何項目”。表示補丁資訊未匯入SCCM。
查看監視-組件狀態,發現SMS_WSUS_SYNC_MANAGER有錯誤警告,查看CM伺服器記錄檔C:\Program Files\Microsoft Configuration Manager\Logs\wsyncmgr.log,報以下錯誤:
*** *** Unknown SQL Error! $$<SMS_WSUS_SYNC_MANAGER><03-06-2015 02:11:11.449-480><thread=4036 (0xFC4)>
Failed to sync update 57a02ff3-31b4-4be8-bcee-33d74eba9a18. Error: Failed to save update ac675cdd-70e8-447f-8fbd-3fa0225a3ca5. CCISource error: -1.
網上查詢解決辦法和資料庫有關,解決辦法如下:
1、Check the database ownership in SQL Management Studio using the query:
Exec sp_helpdb
650) this.width=650;" src="http://s3.51cto.com/wyfs02/M01/5A/2F/wKioL1T5S1ehFLmUAAIXE8YgufU243.jpg" title="screenshot1.jpg" alt="wKioL1T5S1ehFLmUAAIXE8YgufU243.jpg" />
2、Changed the database ownership back to ‘sa’ using the query:
USE [SCCM_Db] GO EXEC sp_changedbowner ‘sa’
650) this.width=650;" src="http://s3.51cto.com/wyfs02/M00/5A/2F/wKioL1T5S26z7y8gAAIpsP2GNOM352.jpg" title="2.jpg" alt="wKioL1T5S26z7y8gAAIpsP2GNOM352.jpg" />
3、Check the TRUSTWORTHY property on the SCCM database.Right click on SCCM database,Select options and look for trustworthy property in the list of DB options
650) this.width=650;" src="http://s3.51cto.com/wyfs02/M00/5A/33/wKiom1T5SmyyrVITAAH0R-G-fxE069.jpg" title="3.jpg" alt="wKiom1T5SmyyrVITAAH0R-G-fxE069.jpg" />
4、Change the TRUSTWORTHY property on the SCCM database using the SQL query:
ALTER DATABASE [SCCM_Db] SET TRUSTWORTHY ON
650) this.width=650;" src="http://s3.51cto.com/wyfs02/M02/5A/33/wKiom1T5SufSvQX4AAHwT8-YsCo097.jpg" title="4.jpg" alt="wKiom1T5SufSvQX4AAHwT8-YsCo097.jpg" />
修改完成後,重新同步軟體更新,即可在所有軟體更新看到WSUS補丁了。第一次匯入的時間會有點長。
650) this.width=650;" src="http://s3.51cto.com/wyfs02/M02/5A/34/wKiom1T5TnChqpB7AAOLgnxbJi0311.jpg" title="ScreenShot2608.jpg" alt="wKiom1T5TnChqpB7AAOLgnxbJi0311.jpg" />
PS:需要注意預設情況下WSUS的遠端資料庫SUSDB會產生在C盤預設路徑下,可分離出來拷貝到其他盤再附加上就可以了。WSUS安裝完成後不需要配置,在CM添加軟體更新點時再配置。
參考:https://tjmklaver.wordpress.com/2012/06/19/sccm-2012-software-update-synchronization-fails-with-unknown-sql-errors/
SCCM2012軟體更新(WSUS補丁)同步成功無法擷取補丁問題