Junior — Middle
Can the purpose and function of the pg_hba.conf file in the PostgreSQL database management system be explained?
sobes.tech AI
Answer from AI
The pg_hba.conf file in PostgreSQL is responsible for configuring access control to the database at the host level. Its main task is to determine which clients (by IP address), which users, and which authentication methods are allowed to connect to which databases.
This file specifies rules in the following format:
type database user address auth-method [auth-options]
- type — connection type (e.g.,
local,host,hostssl) - database — database or list of databases
- user — user or group of users
- address — client IP address or subnet
- auth-method — authentication method (e.g.,
md5,trust,password)
Example line:
host all all 192.168.1.0/24 md5
means that all users can connect to all databases from IPs in the 192.168.1.0/24 subnet using md5 authentication.
Thus, pg_hba.conf is a key file for security and access management in PostgreSQL.