4

We have an existing Windows Server 2003 domain and several other computers are on that network (i.e., we have Windows Server 2008 member servers, other Windows Server 2003 member servers, Windows 7 and XP workstations, and even a Windows 2000 Server member server). Everything has been working fine until this first Windows Server 2012 server.

We need to add this Windows Server 2012 server as a member server to our exist domain. We do not want it to be a domain controller, not even a backup domain controller - just another server on the network.

When we try to add it to the domain using the standard Computer Name/Domain Changes dialog from System Properties, it can never find the domain controller. We get the message "The specified domain either does not exist or could not be contacted." Of course, the domain is online and all networking is fine, and we're using Administrator (domain and local Administrator user accounts), but ... nothing.

Is there some "trick" to adding a Windows Server 2012 server as a member server to an existing domain?

What else can I try?

MDMarra
  • 100,183
  • 32
  • 195
  • 326
lmttag
  • 197
  • 1
  • 3
  • 8
  • 3
    Is the server configured to use your AD DNS servers for DNS? – joeqwerty Oct 12 '12 at 16:30
  • 3
    `"We do not want it to be a domain controller, not even a backup domain controller - just another server on the network."` - There hasn't been backup domain controllers since the NT4 days. I know this isn't relevant to your question, but if you're working with AD, this is a major misunderstanding that can lead to headaches down the road. [This](http://serverfault.com/questions/402580/what-is-active-directory-and-how-does-it-work) Q&A should give you a solid overview of AD and how DCs interact with workstations and member servers. – MDMarra Oct 12 '12 at 17:33
  • i tried all the obvious options and disabling ip v6 worked for me on my vmware 2012 r2 server –  Dec 20 '14 at 13:16

2 Answers2

12

We get the message "The specified domain either does not exist or could not be contacted."

Check DNS. Rule #1 for all AD problems is "Check DNS." Rule #2 is "If it's not DNS, you're in trouble."

From the command prompt are you able to ping or do an nslookup of the FQDN of your AD domain? I'm betting you just have the 2012 server's DNS list misconfigured in the network adapter properties.

There's no "trick" to making 2012 a member server, troubleshoot this the same way that you would 2003 or 2008.

MDMarra
  • 100,183
  • 32
  • 195
  • 326
-2

In my case I had to disable IPv6 on the Server 2012 i was trying to promote. This took a while to figure out as I was troubleshooting ipv4 and not finding any problem. Once it was forced to use IPv4 there was no problem.

  • 2
    You really don't want to [disable IPv6](http://serverfault.com/questions/179954/how-to-remove-or-disable-ipv6-in-windows-server-2008-r2/504600#504600) unless you're absolutely sure removing it won't cause other problems. –  May 08 '13 at 16:59