File backup solution between servers, how to automatically back up server files to another server?

File backup solution between servers, how to automatically back up server files to another server?

Many organizations have the need to back up file servers, and often automatically back up files from one server to another file server. How to achieve it?

1. How to automatically backup Windows file servers

The easiest way to automatically back up a Windows file server is to install special server file automatic backup software. Currently, there is some software in China that is specifically used to back up server files. For example, there is a "Da Shi Zhi Server File Automatic Backup System" (download address: http://www.grabsun.com/filebackup.html). Once installed on the server, you can perform incremental and full backups of the server's files. That is, you can automatically and regularly back up the server's folders to other disk partitions of the server, external mobile hard drives, other file servers or NAS storage spaces, etc., thereby effectively protecting the security of server files and preventing the loss of server files. As shown in the following figure:


Figure: Dashizhi server file automatic backup software

At the same time, through the Dashizhi server file automatic backup system, it is also possible to migrate all files or folders and corresponding accounts on one server to another server, thus avoiding the trouble of resetting account and file access permissions. As shown below:


Figure: Server file migration

Of course, you can also do this via script commands. The details are as follows:

Some project files are uploaded to Windows system temporary files and need to be backed up regularly. For example, I want to copy the D/information/images folder and all the files under it to the F/Archives folder, as follows:

1. Create a new txt file and enter the following content

Parameter explanation:

  • /e: copy all subdirectories, including empty subdirectories;
  • /I: If the target file or directory does not exist and the number of files to be copied is more than one, the target is assumed to be a directory;
  • /d: only copies files with a file date after the target file (i.e. modified source files)
  • /h: Copies both hidden and system files
  • /r: Copy and overwrite read-only files
  • /y: Copies file audit settings (does not display confirmation to overwrite existing files)

2. After saving the text file, rename the file to ".bat" file

3. In win10 system

Right click on Start->Computer Management->System Tools->Task Scheduler->Task Scheduler Library->Create Task

Win7 system

Accessories --> System Tools --> Task Scheduler - Create a task

What is created here is to be executed once every morning at 9 o'clock. After the creation is completed, refer to Figure 3 to select the task, click the "Run" button in the options, and view the running effect.

If you need to trigger once every N minutes, you need to set the trigger as follows (taking once every 10 minutes as an example)

2. How to automatically backup a Linux file server

1. Advance explanation:

Take the example of establishing scheduled synchronization between two servers, back up the contents of the /home/jack path on server A to the /home/test path on server B.

Set the scheduled synchronization time to 5 minutes

2. Configuration process:

Server (Server A):

Install rsync: yum -y install rsync

ln -s /etc/rsyncd.conf

Write the rsync configuration file: vim rsyncd.conf

The analysis is as follows:

 uid = root #root user access (I use ROOT user here, you can also use other newly created users)
  gid = root #root group user access port=871 #through port 873
  use chroot = yes #You can use chroot
  read only = no #Read and write max connections = 4 #Maximum number of connections list = no #Do not list the file list pid file = /var/run/rsyncd.pid #This step does not require this file timeout = 900
  lock file = /var/run/rsyncd.lock #This file may not exist in this step log file = /var/log/rsyncd.log #This file may not exist in this step [backup] #Release item (note this naming) 
   comment = this is module for backup #Module introduction, can be deleted path = /home/jack/ #Published path ignore errors
   auth users = root #Authentication user is root
     secrets file = /etc/rsyncd.pass #password file

4. Write the user password file: echo "root:111" > /etc/rsyncd.pass

(root: the login username set in the previous step; 111: the password of the file can be set at will, but remember it, you will need it next; this step creates the rsyncd.pass file)

Modify the permissions of the password file (this step is very important and can only be 600): chmod 600 /etc/rsyncd.pass

Start rsyncd Service

service rsyncd start

Check the ports occupied by the process: netstat -tunlp

(After starting the rsyncd service, it will show that port 873 is occupied by rsync)

Client (i.e. Server B):

1.yum -y install rsync

2.echo "root:123" > /etc/rsyncd/rsyncd.pass

(root: Username is optional. If you do, it must be the same as the username set in step 3 of the server settings; 111: Password, required, must be the same as the password set in step 4 of the server settings)

3.chmod 600 /etc/rsyncd.pass

4. Create a path to store backup files: mkdir /home/backups

(You can set the path at will)

5. Every 5 minutes, synchronize the files in the backup module directory in server A (we set it to /home/jack) to the local directory (we set it to /home/backups)

1> ssh-keygen -t dsa -b 1024

2> Add the contents of id_dsa.pub to the authorized_keys file of machine B cat /root/.ssh/id_dsa.pub >> authorized_keys1

3> Create a script file that needs to be executed regularly, such as: rsyncd.sh script: vi /etc/rsyncd.sh (the path is set by yourself), add the following content to this script: (The meaning of each command is explained at the end of the document)

rsync -auv --password-file=/etc/rsyncd.pass
[email protected]::backup /home/test/ 

4> Set the script execution time: crontab –e, add the following content

*/5 * * * * sh /etc/rsyncd.sh #Perform synchronization once every 5 minutes;

At this point, the synchronization configuration is basically completed. Under normal circumstances, synchronization will be performed every 5 minutes.

You can also directly enter the synchronization command to check whether synchronization is possible. The command format is:

rsync command format: rsync [option] source path target path

For example: Synchronize the files to be backed up in the backup module of server A to the local /home/test directory:

rsync -auv --password-file=/etc/rsyncd.pass
[email protected]::backup /home/test/ 

Under normal circumstances, the above information will be displayed if the synchronization is successful.

You may also be interested in:
  • Use winrar and ftp commands to automatically back up files and automatically upload them to the specified ftp server
  • Automatically back up data to a server via FTP under Windows and delete backups older than a specified number of days
  • Windows server automatic backup task (batch processing)

<<:  Using MySQL in Windows: Implementing Automatic Scheduled Backups

>>:  js precise calculation

Recommend

Graphical steps of zabbix monitoring vmware exsi host

1. Enter the virtualization vcenter, log in with ...

Docker core and specific use of installation

1. What is Docker? (1) Docker is an open source t...

How to set up remote access to a server by specifying an IP address in Windows

We have many servers that are often interfered wi...

A brief analysis of the use of the HTML webpack plugin

Using the html-webpack-plugin plug-in to start th...

Detailed explanation of the use of docker tag and docker push

Docker tag detailed explanation The use of the do...

js basic syntax and maven project configuration tutorial case

Table of contents 1. js statement Second, js arra...

How to query and update the same table in MySQL database at the same time

In ordinary projects, I often encounter this prob...

The difference between useEffect and useLayoutEffect in React

Table of contents Prerequisites useEffect commitB...

Install Windows Server 2019 on VMware Workstation (Graphic Tutorial)

If prompted to enter a key, select [I don’t have ...

Manjaro installation CUDA implementation tutorial analysis

At the end of last year, I replaced the opensuse ...

Talk about important subdirectory issues in Linux system

/etc/fstab Automatically mount partitions/disks, ...

W3C Tutorial (4): W3C XHTML Activities

HTML is a hybrid language used for publishing on ...

In-depth analysis of HTML table tags and related line break issues

What is a table? Table is an Html table, a carrie...