Monday, March 20, 2017

GitLab Setup

GitLab Server Setup on AWS:

Select this AMI from your desired region:

bitnami-gitlab-8.17.2-0-linux-ubuntu-14.04.3-x86_64-hvm-ebs

Select this Instance Type:

any instance > t2.xlarge

Disk Size:

Select disk size as per your project need.

............................. WIP

Wednesday, February 15, 2017

Postgres backup and restore using pg_dump

Backup & Restore commands for postgres database


-Backup using dumpall command (take backup of all db's):

pg_dumpall -c -U postgres -h localhost -p 5432  -f sample.dump

-Restore using psql command

psql -U postgres -h localhost -p 5432 -f sample2.dump postgres

Terraform Cheat Sheet [WIP]

Installing Terraform