No Image

Hbase Commands

August 8, 2018 0

1. Connect to HBase. $ hbase shell hbase(main):001:0> Display HBase Shell Help Text. Type help and press Enter, to display some basic usage information for […]

No Image

Install Hbase 2.x with Hadoop 3.x

August 7, 2018 0

Hbase – Pseudo Distributed mode of installation: This is a method for Hbase Installation, known as Pseudo Distributed mode of Installation. Below are the steps […]

No Image

Configure Redis Password

June 25, 2018 0

Configuring a Redis password enables one of its two built-in security feature – the auth command, which requires clients to authenticate to access the database. […]

No Image

How to Check Postgres Replication

June 11, 2018 0

Run the following command in Master Node: select application_name, state, sync_priority, sync_state from pg_stat_replication; You should see the below: application_name | state | sync_priority | […]

No Image

Postgres SQL, Conditions using CASE

April 9, 2018 0

The SQL CASE expression is a generic conditional expression, similar to if/else statements in other programming languages: CASE WHEN condition THEN result [WHEN …] [ELSE […]

No Image

Tuning Semaphore for Postgres

March 28, 2018 0

Edit the file sysctl.conf: vi /etc/sysctl.conf Add: kernel.sem = 250 512000 100 2048 For the settings to take effect, run: sysctl -p Tuning Semaphore will […]

No Image

Install and Setup Redis

March 28, 2018 0

Download and Untar Redis Installer # wget http://download.redis.io/releases/redis-2.8.3.tar.gz # tar -xzvf redis-2.8.3.tar.gz Install GCC & TCL (if not yet) # yum install gcc tcl Enter […]

No Image

MongoDB Common Commands

March 23, 2018 0

DATABASE COMMANDS: list databases: show dbs list Collections/Tables: show collections //output every collection OR show tables OR db.getCollectionNames() Select specific collection/table: db.collectionName.find() ROLES COMMANDS: list […]