PostgreSQL 18 – fdw 연결을 위한 SCRAM 패스스루 인증
Matheus Alcantara2025년 8월 21일 PostgreSQL 18은 postgres_fdw 또는 dblink_fdw를 사용하는 사용자에게 반가운 기능을 제공합니다: SCRAM 패스스루(pass-through) 인증입니다. 이제 외부 서버(Foreign Server) 연결을 설정할 때 USER MAPPING 옵션에 평문 비밀번호를 저장할 필요가 없습니다. 다음은 이를 가능하게 한 커밋입니다: commit 761c79508e7fbc33c1b11754bdde4bd03ce9cbb3Author: Peter Eisentraut <peter@eisentraut.org>Date: Wed Jan 15 17:55:18 2025 +0100 postgres_fdw: SCRAM authentication pass-through This enables SCRAM authentication for postgres_fdw when connecting to a foreign server without having to store a plain-text password on user mapping options. This is done by saving the SCRAM ClientKey and ServerKey from the client authentication and using those instead of the plain-text password for the server-side SCRAM exchange. The new foreign-server or user-mapping option “use_scram_passthrough” enables […]
