mirror of
https://github.com/fruworg/fruworg.github.io.git
synced 2024-11-16 09:27:17 +03:00
52 lines
1.7 KiB
Markdown
52 lines
1.7 KiB
Markdown
---
|
||
title: ldaps аутентификация в Postgres Pro
|
||
description: ad+ldaps+postgres
|
||
date: 2023-06-01T20:40:00+05:00
|
||
tags: [linux, postgres, ad, ldap, tls, windows]
|
||
---
|
||
## Выпуск сертфиката
|
||
AD необходимо дать роль CA и выпустить сертификат. Подробнее: https://youtu.be/xC3ujXGkh_c?t=160
|
||
|
||
## Перенос сертификата
|
||
Необходимо перенести выпущенный конечный сертификат на сервер СУБД и перекодировать следующей командой:
|
||
|
||
```shell
|
||
openssl x509 -inform der -in <ad>.cer -out <ad>.pem
|
||
```
|
||
|
||
## Установка пакета ldap-utils
|
||
```shell
|
||
apt install ldap-utils -y
|
||
```
|
||
|
||
## Правка ldap конфига
|
||
В файл `/etc/ldap/ldap.conf` необходимо добавить следующие строки:
|
||
|
||
```config
|
||
TLS_CACERT /etc/ldap/<ad>.pem
|
||
BASE dc=<domain>,dc=<local>
|
||
URI ldaps://<dc>.<domain>.<local>:636
|
||
```
|
||
|
||
## Проверка ldap
|
||
```shell
|
||
ldapsearch -x -b "dc=<domain>,dc=<local>" -H ldaps://<dc>.<domain>.<local>:636 -W -D <domain-user>
|
||
```
|
||
|
||
## Правка pg_hba.conf
|
||
С ldapprefix/ldapsuffix в файле `/var/lib/pgpro/std-14/data/pg_hba.conf`, возможно, придётся поколдовать. Стоит попробовать их оставить пустыми (="").
|
||
```config
|
||
host <database> <user> <ip>/<mask> ldap ldapserver=<dc>.<domain>.<local> ldapscheme=ldaps ldapprefix="cn=" ldapsuffix=",cn=users,dc=<domain>,dc=<local>"
|
||
```
|
||
|
||
## Создание пользователя в Postgres
|
||
```shell
|
||
psql -c "CREATE USER <domain-user>;"
|
||
```
|
||
|
||
## Перезапуск Postgres Pro
|
||
```shell
|
||
systemctl restart postgres*
|
||
```
|
||
|