Posts Crontab
Post
Cancel

Crontab

https://crontab.guru/

$ crontab -e

0 3 * * * pg_dump -U db_user db_name > ~/db_dumps/$(date +\%Y-\%m-\%d-\%H:\%M:\%S).pgsql;

$ vim ~/.pgpass

localhost:5432:db_name:db_user:secret_password

$ chmod 0600 ~/.pgpass

cron and .pgpass


$ crontab -l

0 3 * * * pg_dump -U <db_user> <db_name> > ~/cron_dumps/$(date +\%Y-\%m-\%d-\%H:\%M:\%S).pgsql

$ crontab -e

~/.pgpass

This post is licensed under CC BY 4.0 by the author.