You are on page 1of 14

1/16/2019 Active Directory Replication Error 1753: There are no more endpoints available from the endpoint mapper.

Active Directory Replication Error 1753:


There are no more endpoints available from
the endpoint mapper.

Symptoms

This article describes symptoms, cause and resolution steps for AD operations
that fail with Win32 error 1753: "There are no more endpoints available from the
endpoint mapper."

1. DCDIAG reports that the Connectivity test, Active Directory Replications test
or KnowsOfRoleHolders test has failed with error 1753: “There are no more
endpoints available from the endpoint mapper."

Testing server: <site>\<DC Name>


      Starting test: Connectivity
         * Active Directory LDAP Services Check
         * Active Directory RPC Services Check
         [<DC Name>] DsBindWithSpnEx() failed with error 1753,
         There are no more endpoints available from the endpoint mapper..
         Printing RPC Extended Error Info:
         Error Record 1, ProcessID is <process ID> (DcDiag)        
            System Time is: <date> <time>
            Generating component is 2 (RPC runtime)
            Status is 1753: There are no more endpoints available from the
endpoint mapper.             Detection location is 500
            NumberOfParameters is 4
            Unicode string: ncacn_ip_tcp
            Unicode string: <source DC object GUID>._msdcs.contoso.com
            Long val: -481213899
            Long val: 65537
         Error Record 2, ProcessID is 700 (DcDiag)        
            System Time is: <date> <time>
            Generating component is 2 (RPC runtime)
            Status is 1753: There are no more endpoints available from the
endpoint mapper.
            NumberOfParameters is 1
            Unicode string: 1025

  [Replications Check,<DC Name>] A recent replication attempt failed:


            From <source DC> to <destination DC>
            Naming Context: <DN path of directory partition>
            The replication generated an error (1753):
            There are no more endpoints available from the endpoint mapper.
            The failure occurred at <date> <time>.
            The last success occurred at <date> <time>.
https://support.microsoft.com/en-in/help/2089874/active-directory-replication-error-1753-there-are-no-more-endpoints-av 1/14
1/16/2019 Active Directory Replication Error 1753: There are no more endpoints available from the endpoint mapper.

            3 failures have occurred since the last success.


            The directory on <DC name> is in the process.
            of starting up or shutting down, and is not available.
            Verify machine is not hung during boot.

2. REPADMIN.EXE reports that replication attempt has failed with status 1753.

REPADMIN commands that commonly cite the 1753 status include but are
not limited to:  
 
·         REPADMIN /REPLSUM ·         REPADMIN /SHOWREPS
·         REPADMIN /SHOWREPL ·         REPADMIN /SYNCALL

Sample output from "REPADMIN /SHOWREPS" depicting inbound


replication from CONTOSO-DC2 to CONTOSO-DC1 failing with the
"replication access was denied" error is shown below: 
Default-First-Site-Name\CONTOSO-DC1
DSA Options: IS_GC
Site Options: (none)
DSA object GUID: b6dc8589-7e00-4a5d-b688-045aef63ec01
DSA invocationID: b6dc8589-7e00-4a5d-b688-045aef63ec01

==== INBOUND NEIGHBORS


======================================

DC=contoso,DC=com
    Default-First-Site-Name\CONTOSO-DC2 via RPC
        DSA object GUID: 74fbe06c-932c-46b5-831b-af9e31f496b2
        Last attempt @ <date> <time> failed, result 1753 (0x6d9):
            There are no more endpoints available from the endpoint mapper.
        <#> consecutive failure(s).
        Last success @ <date> <time>.

3. The "Check Replication Topology" command in Active Directory Sites and


Services returns "there are no more endpoints available from the endpoint
mapper."

Right-clicking on the connection object from a source DC and choosing


"Check Replication Topology" fails with "There are no more endpoints
available from the endpoint mapper. The on-screen error message is shown
below:   
Dialog Title Text: Check Replication Topology
---------------------------
Dialog Message text:

The following error occurred during the attempt to contact the domain
controller: There are no more endpoints available from the endpoint
mapper.

---------------------------
OK   

https://support.microsoft.com/en-in/help/2089874/active-directory-replication-error-1753-there-are-no-more-endpoints-av 2/14
1/16/2019 Active Directory Replication Error 1753: There are no more endpoints available from the endpoint mapper.

4. The "replicate now" command in Active Directory Sites and Services returns
"there are no more endpoints available from the endpoint mapper."

Right-clicking on the connection object from a source DC and choosing


"replicate now" fails with "There are no more endpoints available from the
endpoint mapper. The on-screen error message is shown below:  
Dialog title text: Replicate Now

Dialog message text: The following error occurred during the attempt to
synchronize naming context <%directory partition name%> from Domain
Controller <Source DC> to Domain Controller <Destination DC>:
There are no more endpoints available from the endpoint mapper

The operation will not continue

Buttons in Dialog: OK

5. NTDS KCC, NTDS General or Microsoft-Windows-


ActiveDirectory_DomainService events with the 1753 status are logged in
the directory service event log.

Active Directory events that commonly cite the 1753 status include but are
not limited to:

 
Event Source Event Event String
ID

NTDS General 1655 Active Directory attempted to communicate with


the following global catalog and the attempts were
unsuccessful.

NTDS KCC 1925 The attempt to establish a replication link for the
following writable directory partition failed.

 NTDS KCC 1265 An attempt by the Knowledge Consistency Checker


(KCC) to add a replication agreement for the
following directory partition and source domain
controller failed. 
 

Cause

The diagram below shows the RPC workflow starting with the registration of the
server application with the RPC Endpoint Mapper (EPM) in step 1 to the passing
of data from the RPC client to the client application in step 7.

https://support.microsoft.com/en-in/help/2089874/active-directory-replication-error-1753-there-are-no-more-endpoints-av 3/14
1/16/2019 Active Directory Replication Error 1753: There are no more endpoints available from the endpoint mapper.

Steps 1 through 7 map to the following operations:

1. Server app registers its endpoints with the RPC Endpoint Mapper (EPM)
2. Client makes an RPC call (on behalf of a user, OS or application initiated
operation)
3. Client side RPC contacts the target computers EPM and ask for the endpoint
to complete the client call
4. Server Machine's EPM responds with an endpoint
5. Client side RPC contacts the server app
6. Server app executes the call, returns the result to the client RPC
7. Client side RPC passes the result back to the client app

Failure 1753 is generated by a failure between steps 3 and 4.  Specifically, error
1753 means that the RPC client (destination DC) was able to contact the RPC
Server (source DC) over port 135 but the EPM on the RPC Server (source DC) was
unable to locate the RPC application of interest and returned server side error
1753. The presence of the 1753 error indicates that the RPC client (destination
DC) received the server side error response from the RPC Server (AD replication
source DC) over the network.

Specific root causes for the 1753 error include:

1. The server app never started (i.e. Step 1 in the "more information" diagram
located above was never attempted).

2. The server app started but there was some failure during initialization that
prevented it from registering with the RPC Endpoint Mapper (i.e. Step 1 in
the "more information" diagram above was attempted but failed).

https://support.microsoft.com/en-in/help/2089874/active-directory-replication-error-1753-there-are-no-more-endpoints-av 4/14
1/16/2019 Active Directory Replication Error 1753: There are no more endpoints available from the endpoint mapper.

3. The server app started but subsequently died. (i.e. Step 1 in the "more
information" diagram above was completed successfully, but was undone
later because the server died).

4. The server app manually unregistered its endpoints (similar to 3 but
intentional.  Not likely but included for completeness.)

5. The RPC client (destination DC) contacted a different RPC server than the
intended one due to a Name to IP mapping error in DNS, WINS or host /
lmhosts file.

Error 1753 is NOT caused by

a lack of network connectivity between the RPC client (destination DC) and
RPC Server (source DC) over port 135
a lack of network connectivity between the RPC server (source DC) using
port 135 and the RPC client (destination DC) over the ephemeral port.
a password mismatch or the inability by the source DC to decrypt a
Kerberos encrypted packet

Resolution

1. Verify that the service registering its service with the endpoint mapper
has started

For Windows 2000 and Windows Server 2003 DCs: ensure that the source
DC is booted into normal mode.
For Windows Server 2008 or Windows Server 2008 R2: from the console of
the source DC, start Services Manager (services.msc) and verify that the
Active Directory service is running. Active Directory appears as "Active
Directory Domain Services"

2. Verify that RPC client (destination DC) connected to the intended RPC
Server (source DC)

All DCs in a common Active Directory forest register a GUIDED DC CNAME


record in the _msdcs.<forest root domain> DNS zone regardless of what
domain they reside in within the forest. The guided DC CNAME record is
derived from the objectGUID of each DCs NTDS Settings object.

When performing replication-based operations, a destination DC queries


DNS for the source DCs GUIDED CNAME record. The CNAME record
contains the source DC fully qualified computer name which is used to
derive the source DCs IP address via DNS client cache lookup, Host /
LMHost file lookup, host A / AAAA record in DNS or WINS.

Stale NTDS Settings objects and bad name to IP mappings in DNS, WINS,
Host and LMHOST files may cause the RPC client (destination DC) to
connect to the wrong RPC Server (Source DC). Furthermore, the bad name
https://support.microsoft.com/en-in/help/2089874/active-directory-replication-error-1753-there-are-no-more-endpoints-av 5/14
1/16/2019 Active Directory Replication Error 1753: There are no more endpoints available from the endpoint mapper.

to IP mapping may cause the RPC client (destination DC) to connect to a


computer that doesn't even have the RPC Server Application of interest (the
Active Directory role in this case) installed. (Example: a stale host record for
DC2 contains the IP address of DC3 or a member computer).

Verify that the object GUID for the source DC that exists in the destination
DCs copy of Active Directory matches the source DC object GUID stored in
the source DCs copy of Active Directory. If there is a discrepancy, use
repadmin /showobjmeta on the ntds settings object to see which one
corresponds to last promotion of the source DC (hint: compare date stamps
for the NTDS Settings object create date from /showobjmeta against the
last promotion date in the source DCs dcpromo.log file. You may have to
use the last modify / create date of the DCPROMO.LOG file itself). If the
object GUIDs are not identical, the destination DC likely has a stale NTDS
Settings object for the source DC whose CNAME record refers to a host
record with a bad name to IP mapping.

On the destination DC, run IPCONFIG /ALL to determine which DNS Servers
the destination DC is using for name resolution 
c:\>ipconfig /all 

On the destination DC, run NSLOOKUP against the source DCs fully
qualified DC CNAME record.  

c:\>nslookup -type=cname <fully qualified cname of source DC>


<destination DCs primary DNS Server IP >
c:\>nslookup -type=cname <fully qualified cname of source DC>
<destination DCs secondary DNS Server IP> 

Verify that the IP address returned by NSLOOKUP "owns" the host name /


security identity of the source DC.  

a)      C:\>NBTSTAT –A <IP address returned by NSLOOKUP in the step


above>

OR

b)      Log onto the console of the source DC, run "IPCONFIG" from the CMD
prompt and verify that the source DC owns the IP address returned by the
NSLOOKUP command above 

Check for stale / duplicate host to IP mappings in DNS

NSLOOKUP –type=hostname <single label hostname of source DC>


<primary DNS Server IP on destination DC>
NSLOOKUP –type=hostname <single label hostname of source DC>
<secondary DNS Server IP on destination DC>

NSLOOKUP –type=hostname <fully qualified computer name of source


DC> <primary DNS Server IP on destination DC>
NSLOOKUP –type=hostname <fully qualified computer name of source
DC> <secondary DNS Server IP on dest. DC>

https://support.microsoft.com/en-in/help/2089874/active-directory-replication-error-1753-there-are-no-more-endpoints-av 6/14
1/16/2019 Active Directory Replication Error 1753: There are no more endpoints available from the endpoint mapper.

If invalid IP addresses exist in host records, investigate whether DNS


scavenging is enabled and properly configured.  

If the tests above or a network trace doesn’t show a name query returning
an invalid IP address, consider stale entries in HOST files, LMHOSTS files and
WINS Servers. Note that DNS Servers can also be configured to perform
WINS fallback name resolution.

3. Verify that the server application (Active Directory et al) has registered
with the endpoint mapper on the RPC server (source DC)

Active Directory uses a mix of well-known and dynamically registered ports.


Well known ports and protocols used by Active Directory domain
controllers include: 

   
RPC Server Application Port TCP UDP Comments

DNS Server 53 √ √  

Kerberos 88 √ √  

LDAP Server 389 √ √  

Microsoft-DS 445 √ √

LDAP SSL 636 √ √  

Global Catalog Server 3268 √    

Global Catalog Server 3269 √    

Well-known ports are NOT registered with the endpoint mapper.

Active Directory and other applications also register services that receive
dynamically assigned ports in the RPC ephemeral port range. Such RPC
server applications are dynamically assigned TCP ports between 1024 and
5000 on Windows 2000 and Windows Server 2003 computers and ports
between 49152 and 65535 range on Windows Server 2008 and Windows
Server 2008 R2 computers. The RPC port used by replication can be hard-
coded in the registry using the steps documented in MSKB224196. Active
Directory continues to register with the EPM when configured to use a hard
coded port.

Verify that the RPC Server application of interest has registered itself with
the RPC endpoint mapper on the RPC Server (the source DC in the case of
AD replication).

There are a number of ways to accomplish this task but one is to install and
https://support.microsoft.com/en-in/help/2089874/active-directory-replication-error-1753-there-are-no-more-endpoints-av 7/14
1/16/2019 Active Directory Replication Error 1753: There are no more endpoints available from the endpoint mapper.

run PORTQRY from an admin privileged CMD prompt on the console of the
source DC using the syntax: 
c:\>portquery -n <source DC> -e 135 >file.txt

In the  portqry output, note the port numbers dynamically registered by the
"MS NT Directory DRS Interface" (UUID = 351...) for thencacn_ip_tcp
protocol.   The snippet below shows sample portquery output from a
Windows Server 2008 R2 DC and the UUID / protocol pair specifically used
by Active Directory highlighted inbold:
UUID: e3514235-4b06-11d1-ab04-00c04fc2dcd2 MS NT Directory DRS
Interface
ncacn_np:CONTOSO-DC01[\\pipe\\lsass] 

UUID: e3514235-4b06-11d1-ab04-00c04fc2dcd2 MS NT Directory DRS


Interface
ncacn_np:CONTOSO-DC01[\\PIPE\\protected_storage] 

UUID: e3514235-4b06-11d1-ab04-00c04fc2dcd2 MS NT Directory DRS


Interface
ncacn_ip_tcp:CONTOSO-DC01[49156] 

UUID: e3514235-4b06-11d1-ab04-00c04fc2dcd2 MS NT Directory DRS


Interface
ncacn_http:CONTOSO-DC01[49157] 

UUID: e3514235-4b06-11d1-ab04-00c04fc2dcd2 MS NT Directory DRS


Interface
ncacn_http:CONTOSO-DC01[6004] 

4. Other causes

a. Verify that the source DC is booted in normal mode and that the OS and
DC role on the source DC have fully started

b. Verify that the Active Directory Domain Service is running. If the service is
currently stopped or was not configured with default startup values, reset
the default startup values, reboot the modified DC then retry the operation

c. Verify that the startup value and service status for RPC service and RPC
Locator is correct for OS version of the RPC Client (destination DC) and RPC
Server (source DC). If the service is currently stopped or was not configured
with default startup values, reset the default startup values, reboot the
modified DC then retry the operation

In addition, ensure that the service context matches default settings.

 
  Startup Value Service Status

Windows 2000    

   Remote Procedure Call (RPC)  Automatic Started

https://support.microsoft.com/en-in/help/2089874/active-directory-replication-error-1753-there-are-no-more-endpoints-av 8/14
1/16/2019 Active Directory Replication Error 1753: There are no more endpoints available from the endpoint mapper.

   Remote Procedure Call (RPC)  Automatic Started


Locator

Windows Server 2003, Server 2008,    


Server 2008 R2

   Remote Procedure Call (RPC) Automatic Started

   Remote Procedure Call (RPC) Manual Null or Stopped


Locator

d. Verify that the size the of the dynamic port range has not been
constrained. The Windows Server 2008 and Windows Server 2008 R2 NETSH
syntax to enumerate the RPC port range is shown below:
>netsh int ipv4 show dynamicport tcp
>netsh int ipv4 show dynamicport udp
>netsh int ipv6 show dynamicport tcp
>netsh int ipv6 show dynamicport udp

e. Verify that hard coded port definitions defined per MSKB 224196 fall
within the dynamic port range for source DCs OS version

Review MSKB 224196 and ensure that the hard coded port falls within the
ephemeral port range for the source DC's operating system version.

f.>Verify that the ClientProtocols key exists under


HKLM\Software\Microsoft\Rpc and contains the following 5 default values: 
ncacn_http REG_SZ rpcrt4.dll
ncacn_ip_tcp REG_SZ rpcrt4.dll
ncacn_nb_tcp REG_SZ rpcrt4.dll
ncacn_np REG_SZ rpcrt4.dll
ncacn_ip_udp REG_SZ rpcrt4.dll 

More Information

Example of a bad name to IP mapping causing RPC error 1753 vs.


-2146893022: the target principal name is incorrect

The contoso.com domain consists of \\DC1 and \\DC2 with IP addresses x.x.1.1


and x.x.1.2. The host "A" / "AAAA" records for \\DC2 are correctly registered on
all of the DNS Servers configured for \\DC1. In addition, the HOSTS file on \\DC1
contains an entry mapping DC2s fully qualified hostname to IP address x.x.1.2.
Later, DC2's IP address changes from X.X.1.2 to X.X.1.3 and a new member
computer is joined to the domain with IP address x.x.1.2. AD Replication
attempts triggered by the "replicate now" command in Active Directory Sites and
Services snap-in fails with error 1753 as shown in the trace below:

https://support.microsoft.com/en-in/help/2089874/active-directory-replication-error-1753-there-are-no-more-endpoints-av 9/14
1/16/2019 Active Directory Replication Error 1753: There are no more endpoints available from the endpoint mapper.

F# SRC       DEST      Operation 

 1  x.x.1.1   x.x.1.2   ARP:Request, x.x.1.1 asks for x.x.1.2


 2  x.x.1.2   x.x.1.1   ARP:Response, x.x.1.2 at 00-13-72-28-C8-5E
 3  x.x.1.1   x.x.1.2   TCP:Flags=......S., SrcPort=50206, DstPort=DCE endpoint
resolution(135)
 4  x.x.1.2   x.x.1.1   ARP:Request, x.x.1.2 asks for x.x.1.1
 5  x.x.1.1   x.x.1.2   ARP:Response, x.x.1.1 at 00-15-5D-42-2E-00
 6  x.x.1.2   x.x.1.1   TCP:Flags=...A..S., SrcPort=DCE endpoint resolution(135)
 7  x.x.1.1   x.x.1.2   TCP:Flags=...A...., SrcPort=50206, DstPort=DCE endpoint
resolution(135)
 8  x.x.1.1   x.x.1.2   MSRPC:c/o Bind:  UUID{E1AF8308-5D1F-11C9-91A4-
08002B14A0FA} EPT(EPMP) 
 9  x.x.1.2   x.x.1.1   MSRPC:c/o Bind Ack:  Call=0x2  Assoc Grp=0x5E68 
Xmit=0x16D0  Recv=0x16D0
10  x.x.1.1   x.x.1.2   EPM:Request: ept_map: NDR, DRSR(DRSR) {E3514235-4B06-
11D1-AB04-00C04FC2DCD2}  [DCE endpoint resolution(135)]
11  x.x.1.2   x.x.1.1   EPM:Response: ept_map: 0x16C9A0D6 -
EP_S_NOT_REGISTERED

At frame 10, the destination DC queries the source DCs end point mapper over


port 135 for the Active Directory replication service class UUID E351...

In frame 11, the source DC, in this case a member computer that does not yet
host the DC role and therefore has not registered the E351... UUID for the
Replication service with its local EPM responds with symbolic error
EP_S_NOT_REGISTERED which maps to decimal error 1753, hex error 0x6d9 and
friendly error "there are no more endpoints available from the endpoint
mapper".

Later, the member computer with IP address x.x.1.2 gets promoted as a replica
"MayberryDC" in the contoso.com domain. Again, the "replicate now" command
is used to trigger replication but this time fails with the on-screen error "the
target principal name is incorrect". The computer whose NIC owns the IP address
x.x.1.2 IS a domain controller, is currently booted into normal mode and has
registered the E351... replication service UUID with its local EPM but its does not
own the name / security identity of DC2 and cannot decrypt the Kerberos
request from DC1 so the request now fails with error "The target principal name
is incorrect." which maps to decimal error -2146893022 / hex error 0x80090322.

Such invalid host-to IP mappings could be caused by stale entries in host /


lmhost files, host A / AAAA registrations in DNS or WINS.

Summary: Example 1 failed because an invalid host to IP mapping (in the HOST
file in this case) caused the destination DC to resolve to a "source" DC that did
not have the AD service running (or even installed for that matter) so the
replication SPN was not yet registered and the source DC returned error 1753. In
the second case, an invalid host to IP mapping (again in the HOST file) caused
the destination DC to connect to a DC that had registered the E351... replication
SPN but that source had a different hostname and security identity than the
intended source DC so the attempts failed with error -2146893022: The target
principal name is incorrect. 

Related Content 
https://support.microsoft.com/en-in/help/2089874/active-directory-replication-error-1753-there-are-no-more-endpoints-av 10/14
1/16/2019 Active Directory Replication Error 1753: There are no more endpoints available from the endpoint mapper.

MSKB 839880: Troubleshooting RPC Endpoint Mapper errors using the Windows
Server 2003 Support Tools from the product CD
MSKB 832017  Service overview and network port requirements for the Windows
Server system
MSKB 224196  Restricting Active Directory replication traffic and client RPC traffic
to a specific port
MSKB 154596  How to configure RPC dynamic port allocation to work with
firewall
MSDN: How RPC works
MSDN: How to server prepares for a connection
MSDN: How the client establishes a connection
MSDN: Registering the interface
MSDN: Making the Server available on the network
MSDN: Registering endpoints
MSDN: Listening for client calls
MSDN: How the client establishes a connection

MSKB 224196 Restricting Active Directory replication traffic and client RPC traffic
to a specific port
Technet: SPN for a target DC in AD DS

Last Updated: 24-Oct-2018


 Active Directory Replication
Error
Active Directory Replication
Error 5: Access is denied
Troubleshooting AD
Replication error 1127:
While accessing the hard
disk, a disk operation failed
even after retries
Active Directory Replication
Error 1256: The remote
system is not available.
Active Directory Replication
Error 1396: Logon Failure:
The target account name is
incorrect.
Active Directory Replication
Error 1722: The RPC server is
unavailable
Active Directory Replication
Error 1753: There are no
more endpoints available
from the endpoint mapper.
Troubleshooting AD
Replication error 1818: The
remote procedure call was
cancelled
Troubleshooting AD
Replication error 1908:

https://support.microsoft.com/en-in/help/2089874/active-directory-replication-error-1753-there-are-no-more-endpoints-av 11/14
1/16/2019 Active Directory Replication Error 1753: There are no more endpoints available from the endpoint mapper.

Could not find the domain


controller for this domain.
Troubleshooting AD
Replication error 8240:
"There is no such object on
the server"
Troubleshooting AD
Replication error 8333:
Directory Object Not Found
Troubleshooting AD
Replication error 8418: The
replication operation failed
because of a schema
mismatch between the
servers involved.
Troubleshooting AD
Replication error 8446: The
replication operation failed
to allocate memory
Troubleshooting AD
Replication error 8451: The
replication operation
encountered a database
error
Active Directory Replication
Error 8452: "The naming
context is in the process of
being removed or is not
replicated from the
specified server."
Active Directory Replication
Error 8453: "Replication
access was denied"
Active Directory Replication
Error 8456 or 8457: "The
source | destination server is
currently rejecting
replication requests"
Active Directory replication
error 8464: Synchronization
attempt failed...
Troubleshooting AD
Replication error 8477: The
replication request has been
posted; waiting for reply
Active Directory Replication
Error 8524: The DSA
operation is unable to
proceed because of a DNS
lookup failure
Active Directory replication
error 8545: "Replication
update could not be
applied"
Troubleshooting AD
Replication error 8589: The
DS cannot derive a service
principal name (SPN)

https://support.microsoft.com/en-in/help/2089874/active-directory-replication-error-1753-there-are-no-more-endpoints-av 12/14
1/16/2019 Active Directory Replication Error 1753: There are no more endpoints available from the endpoint mapper.

Troubleshooting AD
Replication error 8606:
"Insufficient attributes were
given to create an object"
Active Directory Replication
Error 8614 The Active
Directory cannot replicate
with this server because the
time since the last
replication with this server
has exceeded the
tombstone lifetime
Active Directory Replication
Error An "Access denied" or
other security error has
caused replication problems
Active Directory Replication
Error -2146893022: "The
target principal name is
incorrect"
 Active Directory Replication
Event ID
Troubleshoot Directory Services
issues in Windows 7 and in
Windows Server 2008 R2
AD replication fails with an RPC
issue after you set a static port for
NTDS in a Windows-based
domain environment
After you re-add a member server
to a DFS replication group in
Windows Server 2003 R2, initial
replication does not occur on the
member server, and changes in
the replicated folder are
replicated unexpectedly to other
replication partners
How to troubleshoot common
Active Directory replication errors

What's new Store & Education Enterprise Developer Company


Support
Surface Pro Microsoft in Microsoft Azure Microsoft Visual Careers
Account profile education Studio
Windows 10 apps Enterprise About Microsoft
Download Center Office for students Developer
Office apps Data platform Network Company news
Sales & support Office 365 for
schools Microsoft partner TechNet Privacy at
Returns resources Microsoft
Microsoft Azure in Channel 9
Order tracking education Manufacturing & Investors
resources Office Dev Center
Support Security
Financial services

 English (India)

Contact us Terms of use Privacy and cookies Trademarks Safety & eco © Microsoft 2019

https://support.microsoft.com/en-in/help/2089874/active-directory-replication-error-1753-there-are-no-more-endpoints-av 13/14
1/16/2019 Active Directory Replication Error 1753: There are no more endpoints available from the endpoint mapper.

https://support.microsoft.com/en-in/help/2089874/active-directory-replication-error-1753-there-are-no-more-endpoints-av 14/14

You might also like