I'm a student learning about System Administration and I'm feeling a bit lost with DFS (Distributed File System) and replication. My goal is to create a DFS namespace that includes 5 shared folders for different departments. I want to set permissions so that each department can only access their specific folder. Additionally, I need to configure replication to ensure that clients can still access these folders if the primary server goes down and only the secondary server is operational. I've been watching a lot of tutorials online, but I keep running into errors. Any guidance would be greatly appreciated!
2 Answers
Getting started can be tricky! I'd recommend first checking that you can access your shared folders directly. Try accessing \\server1\sharethis and \\server2\sharethis to ensure they are set up correctly. Once that's confirmed, you can proceed to set up replication in the DFS Management under the replication section. Create a new replication group, name it, add your servers, include the folders, and follow through. After that, test the replication by adding a simple text file in the folder you're replicating, then check the other server to see if it shows up there too. When replication is working fine, you can set up your namespace by designating the file servers and adding your shared folder. Good luck!
Make sure you check your permissions first. Some tasks might require domain admin rights or similar permissions to complete properly. That might be why you're facing issues. If you keep getting a 'validate path error' when trying to add a folder target to server 2, ensure that all network settings like IPs and firewalls are configured correctly. You mentioned pinging, so that's a good start! But double-check if there are any other restrictions in place that might be affecting access.

Thanks for the tip! I have checked the settings but I still can't seem to resolve the path error. I guess I'll keep troubleshooting.