Start Hive on an insecure cluster

If you want to use Apache Hive for a quick test, you can do so using Hive default authorization mode, assuming you are on an insecure cluster (no Kerberos or Ranger policies). In default authorization mode, only user hive can access Hive. Steps to start the Hive shell, not to be mistaken with the Hive CLI that CDP does not support, include how to log into a cluster.

From the cluster command line, you type hive on the command line of your cluster to start the Hive shell. In the background, Beeline launches the Hive shell.
  1. In CDP Public Cloud, in Environments > your cluster name > CM URL.
  2. In Cloudera Manager, click Hosts > All Hosts.
  3. Make a note of the IP address or host name of a node in your cluster, for example myhost-vpc.cloudera.com.
  4. Use ssh to log into the cluster.
    For example:
    ssh myhost-vpc.cloudera.com
  5. Type hive to start Hive from the command line.
  6. Enter Hive queries.
    SHOW DATABASES;
    CREATE TABLE students (name VARCHAR(64), age INT, gpa DECIMAL(3,2));
    INSERT INTO TABLE students VALUES ('fred flintstone', 35, 1.28), ('barney rubble', 32, 2.32);