I'm really new in Active Directory world and I plan to migrate from Zentyal 7 (a stack of multiple tools packaged in an Ubuntu OS) to a pure Samba4 Active Directory, and keep the same domain name.
I only have :
- users
- groups
- two GPO
I use Windows RSAT to manage groups, users, GPO.
I don't really know how to migrate. Zentyal uses Samba for the AD feature, so I've read this doc. It seems easy to backup and restore :
- Backup on Zentyal with
sudo samba-tool domain backup offline --targetdir=<output-dir>
- Stop the current Domain Controller
- Setup a new machine with a fresh Samba4, same hostname and IP
- Restore on new server with
sudo samba-tool domain backup restore --backup-file=<tar-file> --newservername=<DC-name> --targetdir=<new-samba-dir>
- Start the new Samba server with
samba -s <targetdir>/etc/smb.conf
Do you see anything that could go wrong?
Thanks,