Installing the Greenplum Client Tools

This section contains information for installing the various client programs on your Windows machine and for enabling Greenplum Database to accept remote client connections:

See the Greenplum Database Release Notes for the list of currently supported platforms for the Client Tools.

Parent topic: Greenplum Database Client Tools for Windows

Running the Client Tools Installer

The Greenplum Database client tools installer installs psql.exe, the interactive command-line client interface to Greenplum Database.

To install the Greenplum Database client tools

  1. Download the greenplum-clients-<version>-WinXP-x86_32.msi package from VMware Tanzu Network.
  2. Follow the instructions in Verifying the Greenplum Database Software Download to verify the integrity of the Greenplum Clients software.
  3. Double-click on the greenplum-clients-<version>-WinXP-x86_32.msi package to launch the installer.
  4. Click Next on the Welcome screen.
  5. Click I Agree on the License Agreement screen.
  6. By default, the Greenplum Database client tools will be installed into greenplum-db-<version>. Click Browse if you want to choose another location.
  7. Click Next when you have chosen the install path you want.
  8. Click Install to begin the installation.
  9. Click Finish to exit the installer.

About Your Installation

Your Greenplum Database client tools installation contains the following files and directories:

  • bin — client tools programs
  • greenplum_clients_path.bat — sets environment variables
  • lib — client tools library files

Configuring the Client Tools

Greenplum provides a batch program (greenplum_clients_path.bat) to set the required environment settings for Greenplum loader (located in greenplum-db-<version> by default).

To set the required environment settings

  1. Open a Windows command prompt (Start > Run and type cmd).

  2. At the command prompt, go to the directory where you installed Greenplum loader. For example:

    1. cd \"Program Files"\Greenplum\greenplum-clients-<version>
    2. dir
  3. Execute the greenplum_loaders_path.bat program:

    1. greenplum_clients_path.bat

The PostgreSQL command-line tools also require several connection parameters in order to be able to connect to a Greenplum database. In order to save some typing on the command-line, you can optionally create the following environment variables in your Windows Control Panel.

  • PGDATABASE — The name of the default Greenplum database to connect to.
  • PGHOST — The Greenplum Database master host name or IP address.
  • PGPORT — The port number that the Greenplum master instance (postmaster process) is running on.
  • PGUSER — The default database role name to use for login.

To add a new user environment variable on Windows XP

  1. In Windows Explorer, go to C:\\Control Panel.

  2. Double-click the System icon.

  3. On the Advanced tab, click Environment Variables (bottom).

  4. Click New.

  5. Define the new environment variable. For example:

    Installing the Greenplum Client Tools - 图1

  6. Click OK.

Enabling Greenplum Database for Remote Client Connections

In order for Greenplum Database to be able to accept remote client connections, you must configure your Greenplum Database master so that connections are allowed from the client hosts and database users that will be connecting to Greenplum Database.

To enable remote client connections

  1. Make sure that the pg_hba.conf file of the Greenplum Database master is correctly configured to allow connections from the users to the database(s) using the authentication method you want. For details, see “Editing the pg_hba.conf File” in the Greenplum Database Administration Guide, and also see the Greenplum Database Security Configuration Guide.

    Make sure the authentication method you choose is supported by the client tool you are using.

  2. If you edited pg_hba.conf file, the change requires a server reload (using the gpstop -u command) to take effect.

  3. Make sure that the databases and roles you are using to connect exist in the system and that the roles have the correct privileges to the database objects.

Configuring a Client System for Kerberos Authentication

If you use Kerberos authentication to connect to your Greenplum Database with the psql utility, your client system must be configured to use Kerberos authentication. If you are not using Kerberos authentication to connect to a Greenplum Database, Kerberos is not needed on your client system.

For information about enabling Kerberos authentication with Greenplum Database, see the chapter “Kerberos Authentication” in the Greenplum Database Administrator Guide.

Requirements

The following are requirements to connect to a Greenplum Database that is enabled with Kerberos authentication from a client system with Greenplum Database client software.

Prerequisites

  • Kerberos must be installed and configured on the Greenplum Database master host. See “Enabling Greenplum Database for Remote Client Connections.”

  • The client systems require the Kerberos configuration file krb5.conf from the Greenplum Database master.

  • The client systems require a Kerberos keytab file that contains the authentication credentials for the Greenplum Database user that is used to log into the database.

  • The client machines must be able to connect to Greenplum Database master host.

    If necessary, add the Greenplum Database master host name and IP address to the system hosts file. On Windows 7 systems, the hosts file is located in C:\Windows\System32\drivers\etc\.

Required Software on the Client Machine

  • The Kerberos kinit utility. The kinit.exe utility is available with Kerberos for Windows. Greenplum Database supports Kerberos for Windows version 3.2.2. Kerberos for Windows is available from the Kerberos web site http://web.mit.edu/kerberos/.

    Note: When you install the Kerberos software, you can use other Kerberos utilities such as klist to display Kerberos ticket information.

Setting Up a Client System with Kerberos Authentication

To connect to Greenplum Database with Kerberos authentication requires a Kerberos ticket. On client systems, tickets are generated from Kerberos keytab files with the kinit utility and are stored in a cache file.

  1. Install a copy of the Kerberos configuration file krb5.conf from the Greenplum Database master. The file is used by the Greenplum Database client software and the Kerberos utilities.

    Rename krb5.conf to krb5.ini and move it to the Windows directory. On Windows 7, the Windows directory is C:\Windows.

    If needed, add the parameter default_ccache_name to the [libdefaults] section of the krb5.ini file and specify the location of the Kerberos ticket cache file on the client system.

  2. Obtain a Kerberos keytab file that contains the authentication credentials for the Greenplum Database user.

  3. Run kinit specifying the keytab file to create a ticket on the client machine. For the following example, the keytab file gpdb-kerberos.keytab is in the current directory. The ticket cache file is in the gpadmin user home directory.

    1. > kinit -k -t gpdb-kerberos.keytab
    2. -c C:\Users\gpadmin\cache.txt
    3. gpadmin/kerberos-gpdb@KRB.EXAMPLE.COM

Accessing Greenplum Database with psql

From a remote system, you can access a Greenplum Database that has Kerberos authentication enabled.

  1. As the gpadmin user, open a command window.

  2. Run the client tool batch file from command window greenplum_clients_path.bat

    Change the current directory to the bin directory of the Kerberos for Windows installation. For example:

    1. > cd C:\test\MIT\Kerberos\bin
  3. Start psql from the command window and specify a connection to the Greenplum Database specifying the user that is configured with Kerberos authentication.

    The following example logs into the Greenplum Database on the machine keberos-gpdb as the gpadmin user with the Kerberos credentials gpadmin/kerberos-gpdb:

    1. > psql -U "gpadmin/kerberos-gpdb" -h kerberos-gpdb template1

For information about running psql, see “Running the Greenplum Client Tools.”