使用smartbi-mpp过程中,如果需要卸载smartbi-mpp服务,请参考以下方法:
1、smartbi-mpp单机卸载
①使用SSH工具登陆Linux服务器,
②停止smartbi-mpp服务
代码块 | ||
---|---|---|
| ||
systemctl stop clickhouse-server |
③卸载smartbi-mpp服务
1.查看部署smartbi-mpp的服务
代码块 | ||
---|---|---|
| ||
rpm -qa | grep clickhouse |
...
2.卸载部署的smartbi-mpp服务
代码块 | ||
---|---|---|
| ||
rpm -e --nodeps clickhouse-client-19.4.2.7-1.el7.x86_64
rpm -e --nodeps clickhouse-server-19.4.2.7-1.el7.x86_64
rpm -e --nodeps clickhouse-server-common-19.4.2.7-1.el7.x86_64
rpm -e --nodeps clickhouse-common-static-19.4.2.7-1.el7.x86_64 |
注意 | ||
---|---|---|
| ||
rpm -e 卸载rpm安装包命令, --nodeps 忽略软件包依赖关系 |
④关闭防火墙开放的smartbi-mpp相关端口:
关闭端口:9000,8123
代码块 | ||||
---|---|---|---|---|
| ||||
firewall-cmd --zone=public --remove-port=9000/tcp --permanent
firewall-cmd --zone=public --remove-port=8123/tcp --permanent
|
配置完以后重新加载firewalld,使配置生效
代码块 | ||||
---|---|---|---|---|
| ||||
firewall-cmd --reload |
如需重新部署smartbi-mpp服务,可参考 部署Smartbi-MPP高速缓存库
2、smartbi-mpp分布式集群卸载
参考smartbi-mpp单机卸载方法,在部署smartbi-mpp分布式集群的服务器中操进行操作即可。