Re: postgres user with automate rsync and private/public key pairs

From: Ian Lawrence Barwick <barwick(at)gmail(dot)com>
To: Daniel Vázquez <daniel2d2art(at)gmail(dot)com>
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: postgres user with automate rsync and private/public key pairs
Date: 2013-06-14 11:31:36
Message-ID: CAB8KJ=gkT3M59o3u1K+9PWfi+NTdCZBjUekTif6QoHeJ2vf-sQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

2013/6/14 Daniel Vázquez <daniel2d2art(at)gmail(dot)com>:
> Hi here!
>
> Centos 6.4
> Postgres 9.1
>
> I want to automate rsync backups from server1 to server2 via ssh using the
> postgres(linux deamon user) and a pair of private/public keys generated by
> ssh-keygen
>
> I generated the keys in Server1 and copy and added id_rsa.pub to
> /var/lib/pgsql/.ssh/authorized_keys in Server2. all owned by
> postgres:postgres and chmod 700 to .ssh/ folder and chmod 600 to
> authorized_key file.
> But when try to test it and try to access via ssh always ask for postgres
> password.
>
> Same procedure works properly for others user, but not for postgres user.
> postgres user is installed without password, I believed that this is the
> problem and I try to set a password, but the problem persists although
> postgres user has a password, can connect without avoid the ssh password
> required prompt.
>
> At first it seems that everything is properly configured, I forget
> something?
> Can postgres (linux user) login via ssh with private/public pair keys?

There's no reason why that shouldn't work in principle.

There are a couple of potential issues related to the SSH configuration
(/etc/ssh/sshd_config) I can think of:
- if AllowGroups is set, the postgres user will need to be member of
one of the groups defined;
- if StrictModes is set to "yes", the postgres user directory should
not be world-writeable
(not that it should be anyway).

Looking at /var/log/auth.log might provide more clues.

Regards

Ian Barwick

>
> Last think ... I try to reset the postgres user as initial setup (without
> password) using passwd -d command but shadow file shows different blank
> password is not as double exclamation I don't know if it's indiferent for
> correct postgres work or there are some way to reset original postgres user
> values.
>
> postgres::15849:0:99999:7:::
>
> instead of:
>
> postgres:!!:15646::::::
>
>
> Thanks for your comments

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Scott Ribe 2013-06-14 12:48:17 Re: postgres user with automate rsync and private/public key pairs
Previous Message Daniel Vázquez 2013-06-14 08:15:49 postgres user with automate rsync and private/public key pairs