安装
wget https://github.com/Tarsnap/spiped/archive/refs/tags/1.6.1.tar.gz
tar -zxvf 1.6.1.tar.gz
cd spiped-1.6.1
make
make install
生成随机秘钥文件
dd if=/dev/urandom bs=32 count=1 of=redis.key
启动spiped
spiped -d -s '[192.168.65.128]:6479' -t '[192.168.65.128]:6379' -k redis.key
//监控本地的6479端口,在6479端口接收到的消息转发到6379,
//利用redis.key秘钥文件启动
//将128上的redis.key复制到129上
scp ./spiped-1.6.1/redis.key 192.168.65.129:/root
//在129上执行
spiped -e -s '[192.168.65.129]:6379' -t '[192.168.65.128]:6479' -k /root/redis.key
redis-cli -a hx -h 192.168.65.128