The conference was really a mini-conference but it was great. It was held …
Blog
PDXPGDay 2014
apt.postgresql.org... a wonderful if flawed apt repository
These issues are not …
Kicking the Donkey of PostgreSQL Replication
Security Considerations While Using ssh-agent.
Recently we got contacted by a customer, and started the typical remote access setup: ask them to open ssh port for our bastion server, create a new user for us, and add the corresponding ssh public key. Well, they promptly responded, and we tested access, got into their bastion server and then tried to get to one of the broken servers but, it was asking for a password. We just …
Managing pg_hba.conf With Ansible
pg_hba.conf is perhaps one of the easiest to understand configuration files in PostgreSQL. Its syntax is straightforward, the concept seems to resemble that of any popular IP filter or ACL mechanism in various software packages. pg_hba.conf is also well documented, like the rest of PostgreSQL, and we love it because it lets us do what we want without getting in our way. What else could we possibly ask of it? …
PgConf.eu is over, it was a blast but I am curious about the future
I had an odd feeling for …
5 Things a Non-Geek Girl Learned from Playing with Geeks at CMD
When I began at Command Prompt, Java was coffee, Python was a snake, and a Ruby was best used on the color of glittery slippers. If you would have asked me two and a half years ago what "PostgreSQL" does, I would have asked you what language you were speaking.
A year later, I took my first sales call with out Joshua Drake (jd, @linuxhiker). I was shaking in my …
A pg_basebackup Wish List
pg_basebackup was introduced in Postgres 9.1 as a simple way to copy the data directory of a running database cluster. This was a great addition to a small group of PostgreSQL Client Applications.
The pg_basebackup approach differs from the standard pg_start_backup(), rsync (or other file system copy), pg_stop_backup() approach in that it uses the replication protocol over a standard Postgres connection to make the base backup. A few highlights: …