RE: Postgres user password

Поиск
Список
Период
Сортировка
От Alvaro Aguayo Garcia-Rada
Тема RE: Postgres user password
Дата
Msg-id qban05telj3fc8cc08bngpgo.1519268651193@email.android.com
обсуждение исходный текст
Ответ на Postgres user password  (Azimuddin Mohammed <azimeiu@gmail.com>)
Список pgsql-admin
There are some possible solutions:

- .pgpass file, which permissions can be changed so only owner can read it
- PGPASS environment variable. Don't discard it right away, because don't have to set this variable pn the script itself; you can set it into your .bash_profile, and change its permissions so only owner can read it. You can even use some openssl commands so that it is never stored in clear text.
- Playing a bit with pg_hba.conf . You can use "trust" authentication for UNIX socket connections, or create a user intended only for backup(read only access) with "trust" authentication for the specific database for UNIX socket or localhost connections. With this, you won't have to use a password.
- Further on the pg_hba.conf tricks, you can create a postgres user with the same name as the linux user running your tasks, and add a line for such user with "ident" authentication, so the user will not require password only if the task is running as such linux user and using UNIX socket connection.

Regards,

Alvaro Aguayo
Jefe de Operaciones
Open Comb Systems E.I.R.L.

Oficina: (+51-13377813 | RPM: #034252 / (+51) 995540103  | RPC: (+51) 954183248
Website: www.ocs.pe

Sent from my Sony Xperia™ smartphone

---- Azimuddin Mohammed wrote ----


Hello,
I have setup my postgres server with postgres as a super user with password. Everytimg when i connect to postgress as super user i have to login with password. My question is how can I automate the scripts for back up and restore that will require password while taking backup or doing restore. We do not want to store the password in the script due to security concerns. Is there a way to do ?

В списке pgsql-admin по дате отправления:

Предыдущее
От: Luis Marin
Дата:
Сообщение: PostgreSQL Backup Strategies
Следующее
От: Alvaro Aguayo Garcia-Rada
Дата:
Сообщение: RE: PostgreSQL Backup Strategies