Create backups withous user data but only settings

freakie

Verified User
Joined
Jan 16, 2006
Messages
85
Location
Apeldoorn, Netherlands
Hi,

We need to migrate multiple DA servers with TB's of data.

Is there a way to create and restore (user) backups with only all settings of a user in it?

So no www / e-mail or mysql data in it.

That way we can use rsync and mysqldumps to migrate all domains at once with minimal downtime
 
yes, you can exclude from backups "domains data" and "email data" when run backup from admin-level.
old skin screen:
 

Attachments

  • 09-04-2024 12-36-50.jpg
    09-04-2024 12-36-50.jpg
    164.9 KB · Views: 6
We use this strategy to move data from old server to new server.

Inside directadmin.conf -

Code:
skip_hometargz_in_backups=1
skip_domains_in_backups=1
skip_imap_in_backups=1
skip_databases_in_backups=1
skip_uebimiau_in_backups=1

service directadmin restart
 
Back
Top