From 1a14c8720928460e8fdb93db0dd93b418c2e3774 Mon Sep 17 00:00:00 2001 From: tteckster Date: Fri, 27 Sep 2024 06:00:26 -0400 Subject: [PATCH] Update postgresql-install.sh PostgreSQL version 17 --- install/postgresql-install.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/install/postgresql-install.sh b/install/postgresql-install.sh index 3cf51532..4a7fcc72 100644 --- a/install/postgresql-install.sh +++ b/install/postgresql-install.sh @@ -30,7 +30,7 @@ msg_info "Installing PostgreSQL" $STD apt-get update $STD apt-get install -y postgresql -cat </etc/postgresql/16/main/pg_hba.conf +cat </etc/postgresql/17/main/pg_hba.conf # PostgreSQL Client Authentication Configuration File local all postgres peer # TYPE DATABASE USER ADDRESS METHOD @@ -49,7 +49,7 @@ host replication all 127.0.0.1/32 scram-sha-256 host replication all ::1/128 scram-sha-256 EOF -cat </etc/postgresql/16/main/postgresql.conf +cat </etc/postgresql/17/main/postgresql.conf # ----------------------------- # PostgreSQL configuration file # ----------------------------- @@ -58,10 +58,10 @@ cat </etc/postgresql/16/main/postgresql.conf # FILE LOCATIONS #------------------------------------------------------------------------------ -data_directory = '/var/lib/postgresql/16/main' -hba_file = '/etc/postgresql/16/main/pg_hba.conf' -ident_file = '/etc/postgresql/16/main/pg_ident.conf' -external_pid_file = '/var/run/postgresql/16-main.pid' +data_directory = '/var/lib/postgresql/17/main' +hba_file = '/etc/postgresql/17/main/pg_hba.conf' +ident_file = '/etc/postgresql/17/main/pg_ident.conf' +external_pid_file = '/var/run/postgresql/17-main.pid' #------------------------------------------------------------------------------ # CONNECTIONS AND AUTHENTICATION @@ -107,7 +107,7 @@ log_timezone = 'Etc/UTC' # PROCESS TITLE #------------------------------------------------------------------------------ -cluster_name = '16/main' +cluster_name = '17/main' #------------------------------------------------------------------------------ # CLIENT CONNECTION DEFAULTS