From: Pavan Deolasee Date: Tue, 29 Mar 2016 07:00:44 +0000 (+0530) Subject: Add missing steps to create information about the coordinator node on the X-Git-Tag: XL9_5_R1BETA2~4 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=17cde3fdabf1a7a933d2f1ffc047831d39379cf0;p=postgres-xl.git Add missing steps to create information about the coordinator node on the datanodes in installation guide --- diff --git a/doc/src/sgml/installation.sgml b/doc/src/sgml/installation.sgml index dd1222d485..2c5dd9cb1c 100644 --- a/doc/src/sgml/installation.sgml +++ b/doc/src/sgml/installation.sgml @@ -63,8 +63,10 @@ su - postgres /usr/local/pgsql/bin/psql -c "CREATE NODE datanode2 WITH (TYPE = 'datanode', PORT = 15433)" postgres /usr/local/pgsql/bin/psql -c "EXECUTE DIRECT ON (datanode1) 'ALTER NODE datanode1 WITH (TYPE = ''datanode'', PORT = 15432)'" postgres /usr/local/pgsql/bin/psql -c "EXECUTE DIRECT ON (datanode1) 'CREATE NODE datanode2 WITH (TYPE = ''datanode'', PORT = 15433)'" postgres +/usr/local/pgsql/bin/psql -c "EXECUTE DIRECT ON (datanode1) 'CREATE NODE coord1 WITH (TYPE = ''coordinator'', PORT = 5432)'" postgres /usr/local/pgsql/bin/psql -c "EXECUTE DIRECT ON (datanode2) 'ALTER NODE datanode2 WITH (TYPE = ''datanode'', PORT = 15433)'" postgres /usr/local/pgsql/bin/psql -c "EXECUTE DIRECT ON (datanode2) 'CREATE NODE datanode1 WITH (TYPE = ''datanode'', PORT = 15432)'" postgres +/usr/local/pgsql/bin/psql -c "EXECUTE DIRECT ON (datanode2) 'CREATE NODE coord1 WITH (TYPE = ''coordinator'', PORT = 5432)'" postgres /usr/local/pgsql/bin/psql -c "SELECT pgxc_pool_reload()" postgres /usr/local/pgsql/bin/psql -c "EXECUTE DIRECT ON (datanode1) 'SELECT pgxc_pool_reload()'" postgres /usr/local/pgsql/bin/psql -c "EXECUTE DIRECT ON (datanode2) 'SELECT pgxc_pool_reload()'" postgres