This tutorial will explain how to install AD on server 2008. This will valid for windows 2008 R2 as well.
Requirement:
Minimum: Single processor with 1.4 GHz (x64 processor) or 1.3GHz (Dual Core)
Minimum: 512 MB RAM
Minimum: 32 GB or greater
In here the server ip is 10.0.0.14. Since we going to make it as DNS server too you should use the same ip as the preferred DNS server.
After that you will need to do a reboot.
Password : XXXXXXXX
Hope this tutorial is clear for you guys. If any question please ask me on rebeladm@live.com
Requirement:
Minimum: Single processor with 1.4 GHz (x64 processor) or 1.3GHz (Dual Core)
Minimum: 512 MB RAM
Minimum: 32 GB or greater
- The first step is to assign a ip to the server that you going to deploy the AD. Its nessary to install it as DNS server too. So its better to have fixed ip it doesn't mean you cannot install AD without fixed ip address but it will solve lot of issues if you used fixed ip.
In here the server ip is 10.0.0.14. Since we going to make it as DNS server too you should use the same ip as the preferred DNS server.
- Next step is to install the Active directory roles. Unlikely the older version of windows servers Microsoft highly recommend to use server manager option to install roles before you run dcpromo.
- Click on start menu and select the Server Manager
- Select the roles from the right hand panel and click on add roles option.
- From the roles list select the "Active Directory Domain Services" role and Click "Next"
- Review the confirmation and click on "Next"
- Review the installation confirmation and click on "Next"
- It will take few minutes to complete and when its done you will get this confirmation. And then click on "Close"
After that you will need to do a reboot.
-
After reboot please open up the "server Manager" again. And then click on "Roles" there you will see the "Active Directory Domain Services" is successfully installed in there. click on it then you will get a window like below.
In their please pay attention to the message
So please click on that link and it will start the DCPROMO wizard.
- So next step to go through the DC promo wizard.
- To start the installation click on "Next"
- Click on "Next"
- Since we going to install New domain Controller in new forest please select the option "Create a new domain in new forest" option and click on "Next"
- Now we have to provide the name for our domain controller. It must be FQDN. In our case I used rebeladmin.com as the domain. Please click "Next" after it.
- In this window it will ask to select forest function level. If you going to add server 2003 domain controller to your forest later don't select the function level as server 2008. If you going to use full features of 2008 Ad you must select forest function level as server 2008. In my case I used server 2008. Click on "Next" after the select.
- In next window since it's the first DC we should make it as DNS server too. Leave the default selection and click on "Next"
- If the wizard cannot create a delegation for the DNS server, it displays a message to indicate that you can create the delegation manually. To continue, click "Yes"
- In next window it will show up the database location. It its going to be bigger AD its good if you can keep NTDS database in different partition. Click on "Next" after changes.
- In next window its asking to define a restore mode password. Its more important if you had to do a restore from backup in a server crash. Click on "Next" after filling it.
- Next window is giving you a brief of the installation. Click on "Next"
- Then it will start the installation of the AD. It will take some time to complete. After complete of the installation perform a server reboot.
- After the reboot now you can login to the domain. Please use the login as following example
Password : XXXXXXXX
- Now its done and you can view the active directory options on administrative tools menu
Hope this tutorial is clear for you guys. If any question please ask me on rebeladm@live.com
Windows 2008 core its great creation of Microsoft. It's basically a
light version of windows 2008 and comes without all the GUI stuff.
There are tools that you can install in core installation and get the
GUI. In here I'm going to demonstrate how to setup domain control using
Command prompt.
Requirement :
Minimum: 1 GHz (x86 processor) or 1.4 GHz (x64 processor)
Minimum: 512 MB RAM
Minimum (32-bit systems): 20 GB or greater
Minimum (64-bit systems): 32 GB or greater
netsh interface ipv4 show interfaces
This will show all the network interfaces that available in the server. Please keep note on idx number of the interface that you need to assign the ip in our case its 10
netsh interface ipv4 set address name="10" source=static address=10.0.0.15 mask=255.255.255.0 gateway=10.0.0.1
in here I wanted to apply ip address 10.0.0.15 to the interface. Here you can see after the command the server got the new ip address
Next step was to assign DNS server ip 10.0.0.15
netsh interface ipv4 add dnsserver name="10" address=10.0.0.15 index=1
then you need to type the file with the requirement
[DCINSTALL]
UserName=administrator
NewDomain=forest
NewDomainDNSName=rebeladmin.com
Password=Pa$$w0rd
SiteName=Default-First-Site-Name
ReplicaOrNewDomain=domain
DatabasePath="%systemroot%'NTDS"
LogPath="%systemroot%'NTDS"
SYSVOLPath="%systemroot%'SYSVOL"
InstallDNS=yes
ConfirmGC=yes
SafeModeAdminPassword=Pa$$w0rd
RebootOnCompletion=yes
In here this will install domain rebeladmin.com with DNS
Now we ready for the install. You can execute it from
dcpromo /answer:c:\unattend.txt
it will take some time to install and after install it will automatically restart. After restart its done. Now you have DC with Server 2008 core.
If you have nay question feel free to ask me on rebeladmin@live.com
Requirement :
Minimum: 1 GHz (x86 processor) or 1.4 GHz (x64 processor)
Minimum: 512 MB RAM
Minimum (32-bit systems): 20 GB or greater
Minimum (64-bit systems): 32 GB or greater
- First option is to assign a dedicated ip to the server.
netsh interface ipv4 show interfaces
This will show all the network interfaces that available in the server. Please keep note on idx number of the interface that you need to assign the ip in our case its 10
netsh interface ipv4 set address name="10" source=static address=10.0.0.15 mask=255.255.255.0 gateway=10.0.0.1
in here I wanted to apply ip address 10.0.0.15 to the interface. Here you can see after the command the server got the new ip address
Next step was to assign DNS server ip 10.0.0.15
netsh interface ipv4 add dnsserver name="10" address=10.0.0.15 index=1
- Now its ready for the DC install. Now we need to create unattend answer file for the domain install
then you need to type the file with the requirement
[DCINSTALL]
UserName=administrator
NewDomain=forest
NewDomainDNSName=rebeladmin.com
Password=Pa$$w0rd
SiteName=Default-First-Site-Name
ReplicaOrNewDomain=domain
DatabasePath="%systemroot%'NTDS"
LogPath="%systemroot%'NTDS"
SYSVOLPath="%systemroot%'SYSVOL"
InstallDNS=yes
ConfirmGC=yes
SafeModeAdminPassword=Pa$$w0rd
RebootOnCompletion=yes
In here this will install domain rebeladmin.com with DNS
Now we ready for the install. You can execute it from
dcpromo /answer:c:\unattend.txt
it will take some time to install and after install it will automatically restart. After restart its done. Now you have DC with Server 2008 core.
If you have nay question feel free to ask me on rebeladmin@live.com
0 comments:
Post a Comment