greenplum 5.7 + gpcheck

news/2024/7/2 20:25:48

gpcheck

查看帮助

[gpadmin@node1 bin]$ gpcheck --help
COMMAND NAME: gpcheck

Verifies and validates Greenplum Database platform settings.

*****************************************************
SYNOPSIS
*****************************************************

gpcheck {{-f | --file} <hostfile_gpcheck> | {-h | --host} <host_ID>
     | --local } [-m <master_host>] [-s <standby_master_host>] 
     [--stdout | --zipout] [--config <config_file>]

gpcheck --zipin <gpcheck_zipfile>

gpcheck -?

gpcheck --version

此处省略若干字

*****************************************************
EXAMPLES
*****************************************************

Verify and validate the Greenplum Database platform settings by entering 
a host file: 

 # gpcheck -f hostfile_gpcheck 

Save Greenplum Database platform settings to a zip file: 

 # gpcheck -f hostfile_gpcheck --zipout 

Verify and validate the Greenplum Database platform settings using a zip 
file created with the --zipout option: 

 # gpcheck --zipin gpcheck_timestamp.tar.gz 

View collected Greenplum Database platform settings: 

 # gpcheck -f hostfile_gpcheck --stdout 

See Also 

gpcheckperf

gpcheck -f

检查segment机器的操作系统情况,默认使用的–config 是 $GPHOME/etc/gpcheck.cnf

[root@node1 ~]# gpcheck -f /usr/local/greenplum-db/all_host

其余参数使用可以查看 gpcheck --help 的输出,非常详细


http://www.niftyadmin.cn/n/2124332.html

相关文章

CentOS7下安装JDK1.8详细过程

3. 解压安装JDK 键入命令 cd /usr 来到刚才的复制文件处&#xff0c;键入命令tar -zxvf java1.8 进行解压 解压效果如下 4. 配置JDK环境变量 键入命令 vim /etc/profile 修改配置文件&#xff0c;记得要在root权限下修改 输入i进入编辑状态&#xff0c;然后将光标移到最后一…

greenplum 5.7 + gpcheckcat

gpcheckcat 查看帮助 $ gpcheckcat -?Usage: gpcheckcat [<option>] [dbname]-?-B parallel: number of worker threads-g dir : generate SQL to rectify catalog corruption, put it in dir-p port : DB port number-P passwd : DB password-U uname : D…

数据库,Unix

Solaris安装Oracle需要安装的包是&#xff1a;SUNWi1cs&#xff0c; SUNWi15cs进入到/cdrom/solaris,.../Sorl./Product下 pkgadd -d . SUNWi1cs 内核参数&#xff1a; set shmsys:shminfo_shmmax4294967295set shmsys:shminfo_shmmni100set semsys:seminfo_semmni100set sem…

CentOS 7安装Elasticsearch 7.2

一 安装jdk elasticsearch7.2 要求JDK版本是jdk11 &#xff0c;我一不小心装JDK8,最后发现不装JDK也可以 。 elasticsearch7.2中包含JDK,只要做一些配置就可以 。详见下边 三 二、Elasticsearch安装配置 &#xff08;1&#xff09;Elasticsearch安装 Elasticsearch的下载…

iSCSI配置

openfiler的配置1&#xff0c;用户名是&#xff1a;openfiler 密码是&#xff1a;password 2&#xff0c;将openfiler用作iSCSI存储服务器&#xff0c;我们需要执行六个主要的任务&#xff1a;设置iSCSI的服务&#xff0c;配置网络访问&#xff0c;制定物理存储并对其分区&am…

fdw postgres_fdw

os:centos 6.8 db:postgresql 9.6 fdw&#xff1a;foreign data wrapper&#xff0c;postgresql的外部数据包装器。 postgres_fdw 是用于postgresql的数据库之间连接&#xff0c;原因是postgresql不能直接跨库访问&#xff0c;被设计用来替代dblink。 这么口语化的描述&#x…

elasticsearch启动常见问题

elasticsearch启动常见问题 原文&#xff1a;https://blog.csdn.net/qq_22211217/article/details/80740873 一、Exception in thread "main" SettingsException[Failed to load settings from [elasticsearch.yml]]; nested: ElasticsearchParseException[malform…

mac 更改默认php

1.新建一个.bash_profile文件并编辑 vim ~/.bash_profile 2.然后在里面输入自己想要的php版本 export PATH/Applications/MAMP/bin/php/php7.2.7/bin:$PATH #/Applications/MAMP/bin/php/php7.2.7/bin是我的php版本路径 3.保存重载环境变量 source ~/.bash_profile 如果你…