Hive offers the possibility to use Hadoop through a SQL-like interface
You can use Hive from the WebUI through HUE:
beeline
beeline> !connect
jdbc:hive2://c14-19.bd.cluster.cesga.es:10000/default;
ssl=true;sslTrustStore=/opt/cesga/cdh61/hiveserver2.jks;
trustStorePassword=notsecret
The Hive CLI is not deprecated and not recommended:
hive
ROW FORMAT DELIMITED
FIELDS TERMINATED BY ':'
create database if not exists uscfajlc;
use uscfajlc;
hdfs dfs -chmod go-rwx /user/hive/warehouse/uscfajlc.db