aru
aru

Reputation: 129

Greenplum installation error

While installing greenplum we are getting below error after running gpcheck command

GPCHECK_ERROR : uname -r output is different among hosts.

on two machines we have installed centos6 and in one machine we have installed centos7.

for greenplum installation is it necessary all hosts should have same os version? should we ignore this error and go ahead.?

Upvotes: 0

Views: 224

Answers (2)

0x0FFF
0x0FFF

Reputation: 5018

You must have the same OS version on all the cluster machines. Greenplum home directory is used for installing gppkgs (add-ons) that are in fact packed rpms. Greenplum initializes rpm database inside of GPDB home directory for managing add-ons. Whenever you do "gpseginstall" (installation, expansion), GPDB copies the content of GPDB home directory to other hosts. However RPM database created on one version of OS is not valid on another, so you would get errors trying to install/list/remove packages there

In general, if you don't plan to use any gppkgs and use it merely for PoC purposes, this should work, but I would strongly recommend to use the same OS version on all the cluster hosts

Upvotes: 2

pgyogesh
pgyogesh

Reputation: 352

It is recommended to have same OS (kernel). If it is not production environment you can give try ignoring it. I have never tested it.

Upvotes: 1

Related Questions