数据库卸载
更新时间:2024-07-01 14:39:42
全部卸载
注意:卸载前需要确保 doctor 已关闭
stop doctor;
停集群节点:
stop all ;
清除集群节点数据目录:
clean all;
停 agent 进程:
stop agent all;
卸载主副中心 mgr 节点:
mgr_ctl stop -D ${mgrdata主}
rm -rf ${mgrdata主}
mgr_ctl stop -D ${mgrdata副}
rm -rf ${mgrdata副}
手动删除二进制安装目录:
rm -rf $app
仅卸载副中心
注意:卸载前需要确保 doctor 已关闭
stop doctor;
停止副中心节点
stop zone zone2;
清除副中心节点数据
clean zone zone2;
删除副中心节点:
drop zone zone2;
停止副中心 agent:
stop agent host5;
stop agent host6;
删除副中心主机:
drop host host5;
drop host host6;
卸载副中心 mgr:
mgr_ctl stop -D $mgrdata --(副中心mgr数据目录)
rm -rf $mgrdata
删除副中心主机上二进制目录
rm -rf $app
问题反馈