So this MP is really a full on site server, which happens to have a MP on it, right?
Yes! Thank you for understand me im spanish and im trying to do my best
I'll try to delete de registry from secundary BBDD site but... Nothing happens,..
Select * from pkgservers where NALpath like '%\\DPNAME01%'
Select * from pkgstatus where pkgserver like '%\\DPNAME01%'
Select * from contentdpmap where serverpath like '%\\DPNAME01%'
Select * from DPinfo where servername like '%DPNAME01%'
--Delete from DPinfo where servername like '%DPNAME01%' and sitecode = 'SIT'
ADD more information about logs:
DPID 2711 - NAL Path ["Display=\\DPNAME01.FQDN\"]MSWNET:["SMS_SITE=SIT"]\\DPNAME01.FQDN\ , ServerName = DPNAME01.FQDN, DPDrive = , IsMulticast = 0, PXE = 1, RemoveWDS = 0, SccmPXE = 0 SMS_DISTRIBUTION_MANAGER 12/11/2021 2:38:57 6600 (0x19C8)
PullDP ["Display=\\DPNAME01.FQDN\"]MSWNET:["SMS_SITE=SIT"]\\DPNAME01.FQDN\ is marked Uninstalled SMS_DISTRIBUTION_MANAGER 12/11/2021 2:38:57 6600 (0x19C8)
Get site system FQDN and account information from DB for ["Display=\\DPNAME01.FQDN\"]MSWNET:["SMS_SITE=SIT"]\\DPNAME01.FQDN\ SMS_DISTRIBUTION_MANAGER 12/11/2021 2:38:57 6600 (0x19C8)
for ["Display=\\DPNAME01.FQDN\"]MSWNET:["SMS_SITE=SIT"]\\DPNAME01.FQDN\, no connection account is available SMS_DISTRIBUTION_MANAGER 12/11/2021 2:38:57 6600 (0x19C8)
Translated server name DPNAME01.FQDN to grifols.com\DPNAME01.FQDN. SMS_DISTRIBUTION_MANAGER 12/11/2021 2:40:22 6600 (0x19C8)
CWmi::Connect() failed to connect to \\DPNAME01.FQDN\root\CIMv2. Error = 0x800706BA SMS_DISTRIBUTION_MANAGER 12/11/2021 2:40:22 6600 (0x19C8)
STATMSG: ID=2391 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=DPNAME01.FQDN SITE=SIT PID=4128 TID=6600 GMTDATE=vi. nov. 12 07:40:22.679 2021 ISTR0="["Display=\\DPNAME01.FQDN\"]MSWNET:["SMS_SITE=SIT"]\\DPNAME01.FQDN\" ISTR1="" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 LE=0X0 AID0=404 AVAL0="["Display=\\DPNAME01.FQDN\"]MSWNET:["SMS_SITE=SIT"]\\DPNAME01.FQDN\" SMS_DISTRIBUTION_MANAGER 12/11/2021 2:40:22 6600 (0x19C8)
DPConnection::ConnectWMI() - Failed to connect to DPNAME01.FQDN. SMS_DISTRIBUTION_MANAGER 12/11/2021 2:40:22 6600 (0x19C8)
for ["Display=\\DPNAME01.FQDN\"]MSWNET:["SMS_SITE=SIT"]\\DPNAME01.FQDN\, failed to get a copy of master SCF SMS_DISTRIBUTION_MANAGER 12/11/2021 2:40:22 6600 (0x19C8)
for ["Display=\\DPNAME01.FQDN\"]MSWNET:["SMS_SITE=SIT"]\\DPNAME01.FQDN\, failed to get a copy of master SCF SMS_DISTRIBUTION_MANAGER 12/11/2021 2:40:22 6600 (0x19C8)
Is marked to uninstall
Solved:
DECLARE @DPName NVARCHAR(100)
SET @DPName = 'DPNAME01.FQDN'
SELECT * FROM ContentDPMap WHERE ServerName = @DPName
SELECT * FROM DistributionPoints WHERE ServerName = @DPName
SELECT * FROM DPInfo WHERE ServerName = @DPName
SELECT * FROM PkgServers_G WHERE NALPath like '%' + @DPName + '%'
SELECT * FROM PkgServers_L WHERE NALPath like '%' + @DPName + '%
SELECT * FROM PkgStatus_G WHERE PkgServer like '%' + @DPName + '%'
SELECT * FROM PkgStatus_L WHERE PkgServer like '%' + @DPName + '%'
SELECT * FROM SysResList WHERE RoleName = 'SMS Distribution Point' AND ServerName = @DPName
And delete associate registries with this older site.
This worked for me and never more appear this error on component or distmgr.log
Regards and thanks to all !!