PostgreSQL DBA part 7 :-PostgreSQL full and incremental backup restore using BART 2.0 tool

BART is a backup and recovery tool for EDB Postgres Databases EDB Backup and Recovery Tool (BART) is a key component of an enterprise-level Postgres-based data management strategy.  BART implements retention policies and point-in-time recovery requirements for large-scale Postgres deployments. Now available, Bart 2.0 provides block-level incremental backup. P.C https://www.enterprisedb.com/products/edb-postgres-platform/edb-backup-and-recovery-tool A.Full backup and restore using BART 2.0 for EDB   1. […]

PostgreSQL DBA part 6 :-PostgreSQL high availability setup using EFM

PostgreSQL high availability setup using EFM   A.Introduction This document provides you the overview of High Availability Setup for EDB Postgres 9.5 database. An EDB Postgres Failover Manager (EFM) cluster is comprised of Failover Manager Processes that reside on the following hosts on a network: A Master node – The Master node is the primary database server that is servicing […]

Manual Steps to Setup ACFS file system in ODA box with GI version 11.2

Below are the Manual Steps to Setup ACFS file system in ODA box with GI version 11.2 Terminology ———– DATA – is the diskgroup from which we are taking space (-volumeDiskGroup parameter) 1024 GB – is the space that we are allocating (-volumeSizeGB parameter ) acfsbkpvol – is the ACFS volume name (-volumeName parameter) /backupfs – is the file system […]

PostgreSQL DBA part 4 :-How to create database in postgresql

How to create database in postgresql Create Database command can be used to create a database in a cluster. −Syntax: Creating Databases CREATE DATABASE name [ [ WITH ] [ OWNER [=] dbowner][ TEMPLATE [=] template ][ ENCODING [=] encoding ][ TABLESPACE [=] tablespace][ CONNECTION LIMIT [=] connlimit ] ] 1.Create database in postgresql  named prod with user as enterprisedb.Please […]

PostgreSQL Parameters(The following are most common parameters in postgresql.conf)

A.Many Ways to set postgresql parameters •Some parameters can be changed per session using the SETcommand. •Some parameters can be changed at the user level using ALTER USER. •Some parameters can be changed at the database level using ALTER DATABASE. •The SHOW command can be used to see settings. •The pg_settings and pg_file_settings catalog table lists settings information. B.PostgreSQL Parameters(The […]

PostgreSQL DBA part 3 :-How to start/stop postgresql database

A.Stopping postgresql database pg_ctl can be used to stop a database cluster •pg_ctl supports three modes of shutdown −smart quit after all clients have disconnected −fast (default)quit directly, with proper shutdown −immediate quit without complete shutdown; will lead to recovery •Syntax −pg_ctl stop [-W] [-t SECS] [-D DATADIR] [-s] [-m SHUTDOWN-MODE] -bash-4.1$ pwd /opt/edb/as9.6/bin -bash-4.1$ ./pg_ctl -D /opt/edb/as9.6/data -mf stop […]

PostgreSQL DBA part2 :-How to connect postgresql database

A.Connecting postgresql locally using port Please identify port in postgresql.conf under /opt/edb/as9.6/data and connect using psql There are pre-requisites for allowing local connection.This pg_hba.conf file is under  /opt/edb/as9.6/data.Please make sure last parameter should be md5 not peer. The below content is for example what should be in pg_hba.conf # “local” is for Unix domain socket connections only local all all md5 # […]

DOCKER CONCEPT FOR DBA– PART 10 : How to secure docker private repository using openssl certificate key

This document explains how to secure private repository using openssl key Before we can use a private repository, we will need to secure it and offer user authentication. Let’s create a self-signed certificate, use the ‘registry’ container by Docker to create basic user authentication, and then copy the files where they need to go on the hosting server. root@deb-VirtualBox:~# mkdir […]

Monitor real time active session statistics by ORAPUB tool

The tool was devised by Craig from ORAPUB which is excellent to monitor what happens in session real time. 1.First I need to down OSM tool kit from ORAPUB. First we need to run the following scripts to create some pre-requisite tables under sys/system schema. a)osmprep.sql — ****************************************************** — * Copyright Notice : (c)1998-2014,2015 OraPub, Inc. — * Filename : […]