标签: centos7

RabbitMQ脑裂问题解决方案调查

现象: RabbitMQ GUI上显示 Network partition detected Mnesia reports that this RabbitMQ cluster has experienced a network partition. There is a risk of losing data. Please read RabbitMQ documentation about network partitions and the possible solutions. 原因分析: 这是由于网络问题导致集群出现了脑裂临时解决办法: 在 相对不怎么信任的分区里,对那个分区的节点实

继续阅读 >>

解决:umount取消挂载时提示/home: device is busy问题

有时需要取消挂载/home或/data数据盘,但执行 umount -a 时出现umount: /home: device is busy,是什么原因呢?怎样解决umount:device is busy的报错 之所以会出现device is busy的报错,是因为有程序在使用/home或/data目录,我们可以使用fuser查看那些程序的进程, 然后杀掉就可以了。 [root@localhost home]# fuser -m /home /home: 10278c 10279c 10280c 10281c 10282c 10295 10365 18222c 命令:kill -9 pid 其

继续阅读 >>

Linux中为RabbitMQ调整文件句柄数和socket连接数

在RabbitMQ中,Socket descriptors 是 File descriptors 的子集,它们也是一对此消彼长的关系。然而,它们的默认配额并不大,File descriptors 默认值为“1024”,而 Socket descriptors 的默认值也只有“829”,同时,File descriptors 所能打开的最大文件数也受限于操作系统的配额。 因此,如果要调整 File descriptors 文件句柄数,就需要同时调整操作系统和RabbitMQ参数。 今天,正好出现了服务连接rabbitmq报超时的错误,在rabbitmq的控制面板中很直观地看到:   在

继续阅读 >>

Greenplum 扩展 segment实例个数

扩展Greenplum segment个数,总共分三步。 将主机加入集群(如果在原有主机扩展,不需要这一步) 这一步主要做的是 环境配置,例如OS kernel 参数; 创建gp管理用户; ssh key的交换(使用gpssh-exkeys -e exist_hosts -x new_hosts); greenplum bin软件的拷贝; 规划segment 数据目录; 使用gpcheck检查 (gpcheck -f new_hosts ); 使用gpcheckperf检查性能 (gpcheckperf -f new_hosts_file -d /data1 -d /data2 -v) &nb

继续阅读 >>

greenplum5.7,greenplum-cc-web4.0详细安装配置文档

第一章 文档概述 1、 本安装手册描述适用于Greenplum4.0以上版本的安装Greenplum-cc-web操作 第二章 安装介质 针对Greenplum版本下载对应Greenplum-cc-web包体greenplum-cc-web-x.x.x-LINUX-x86_64.zip; 下载地址: https://network.pivotal.io/products/pivotal-gpdb#/releases/1683/file_groups/26nNum=10 第三章 安装Performance Monitor数据收集Agent gpadmin用户执行如下步骤【仅在master节点】。

继续阅读 >>