« IT » : différence entre les versions
Aucun résumé des modifications |
|||
Ligne 12 : | Ligne 12 : | ||
== Migration of folders to a new server == | == Migration of folders to a new server == | ||
rsync -av /root/ root@ | rsync -av /root/ root@newice3:/root/ --delete | ||
rsync -av /home/ root@ | rsync -av /home/ root@newice3:/home/ --delete | ||
rsync -av /var/www/ root@ | rsync -av /var/www/ root@newice3:/var/www/ --delete | ||
rsync -av /usr/local/www/ root@ | rsync -av /usr/local/www/ root@newice3:/usr/local/www/ --delete | ||
rsync -av /usr/local/etc/ root@ | rsync -av /usr/local/etc/ root@newice3:/usr/local/etc/ --delete | ||
rsync -av /var/log/ root@ | rsync -av /var/log/ root@newice3:/var/log/oldice3/ --delete | ||
rsync -av /etc/ root@ | rsync -av /etc/ root@newice3:/etc/oldice3 --delete | ||
rsync -av /var/awstats/ root@ | rsync -av /var/awstats/ root@newice3:/var/awstats/ --delete | ||
rsync -av /var/log/www/ root@ | rsync -av /var/log/www/ root@newice3:/var/log/www/ --delete | ||
rsync ssh_config sshd_config newice3:/etc/ssh/ | |||
rsync /etc/banner newice3:/etc/ | |||
= References = | = References = | ||
{{references}} | {{references}} |
Version du 5 décembre 2023 à 09:34
Named
Manually updating a Dynamic controlled zone
"If you have to edit the zone files of dynamic zones manually while the DNS server is running, you'll have to freeze the zones with # rndc freeze <myzone> before editing and unfreeze them with # rndc thaw <myzone> after editing. This is because named(8) has internal state information and external journal files attached to dynamic zones that have to be kept in sync with the zone files[1]".
Rsync
To delete files in the target if they disappeared from the source, then add the --delete option to your command. For example:
rsync -avh source/ dest/ --delete
NB: -avh is for --archive --verbose --human-readable[2].
Migration of folders to a new server
rsync -av /root/ root@newice3:/root/ --delete
rsync -av /home/ root@newice3:/home/ --delete
rsync -av /var/www/ root@newice3:/var/www/ --delete
rsync -av /usr/local/www/ root@newice3:/usr/local/www/ --delete
rsync -av /usr/local/etc/ root@newice3:/usr/local/etc/ --delete
rsync -av /var/log/ root@newice3:/var/log/oldice3/ --delete
rsync -av /etc/ root@newice3:/etc/oldice3 --delete
rsync -av /var/awstats/ root@newice3:/var/awstats/ --delete
rsync -av /var/log/www/ root@newice3:/var/log/www/ --delete
rsync ssh_config sshd_config newice3:/etc/ssh/
rsync /etc/banner newice3:/etc/