PostgreSQL数据库配置

PostgreSQL数据库配置文件的路径:

/etc/postgresql/10/main/postgresql.conf

执行 vi /etc/postgresql/10/main/postgresql.conf 查看配置数据:

# The default values of these variables are driven from the -D command-line
# option or PGDATA environment variable, represented here as ConfigDir.

data_directory = '/var/lib/postgresql/14/main'          # use data in another directory
                                        # (change requires restart)
hba_file = '/etc/postgresql/14/main/pg_hba.conf'        # host-based authentication file
                                        # (change requires restart)
ident_file = '/etc/postgresql/14/main/pg_ident.conf'    # ident configuration file
                                        # (change requires restart)

# If external_pid_file is not explicitly set, no extra PID file is written.
external_pid_file = '/var/run/postgresql/14-main.pid'                   # write an extra PID file
                                        # (change requires restart)


可以看到数据库存放目录是:/var/lib/postgresql/14/main

猜你喜欢

转载自blog.csdn.net/yzpbright/article/details/127075153
今日推荐