Blogs

Git Mirror - If git hub goes down

Git has a built-in server for sharing git repositories. If you have several repositories in your working directory:

Read more

Script to take the DB backup by passing the db name and host names to S3

#!/bin/sh DB=”” HOST=”” printhelp() { echo " Usage: sh mysql.sh [OPTION]… -db, –database The database name which you need to take the backup

Read more

Ignore Mysql Tables using regex when using Mysqldump command

Hi guys, We can ignore database tables while taking mysqldump using the below command mysqldump -u username -p database –ignore-table=database.

Read more