Taking backup remotely using innobackupex

前端 未结 2 1521
执念已碎
执念已碎 2021-01-11 21:57

I am trying to take backup from a remote machine using innobackupex.

./innobackupex --host= --user= .
<         


        
2条回答
  •  攒了一身酷
    2021-01-11 22:32

    I have the same needs, and I use nfs to solve it.

    mysql on server A, and i want to backup to server B.


    on server A mount server B's directory /data/mysql_data:
    [root@server_a ~]# mount -t nfs server_b:/data/mysql_data /mysql_data_server_b
    and then jest point the output to mysql_data_server_b;


    nfs environment is needed: yum install -y nfs-utils

提交回复
热议问题