This repository has been archived by the owner on Sep 10, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PostgreSQL 9.4.22, 9.5.17, 9.6.13, 10.8, 11.3 (Issue neard/neard#418)
- Loading branch information
Showing
23 changed files
with
292 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@ECHO OFF | ||
|
||
%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1 | ||
copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf" | ||
copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
postgresqlVersion = "10.8" | ||
postgresqlCtlExe = "bin/pg_ctl.exe" | ||
postgresqlCliExe = "bin/psql.exe" | ||
postgresqlDumpExe = "bin/pg_dump.exe" | ||
postgresqlDumpAllExe = "bin/pg_dumpall.exe" | ||
postgresqlConf = "data/postgresql.conf" | ||
postgresqlUserConf = "data/pg_hba.conf" | ||
postgresqlAltConf = "postgresql.conf.nrd" | ||
postgresqlAltUserConf = "pg_hba.conf.nrd" | ||
postgresqlPort = "5432" | ||
postgresqlRootUser = "postgres" | ||
postgresqlRootPwd = "" | ||
|
||
bundleRelease = "@RELEASE_VERSION@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# TYPE DATABASE USER ADDRESS METHOD | ||
host all all 127.0.0.1/32 trust |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#------------------------------------------------------------------------------ | ||
# FILE LOCATIONS | ||
#------------------------------------------------------------------------------ | ||
data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql10.8/data' | ||
hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql10.8/data/pg_hba.conf' | ||
ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql10.8/data/pg_ident.conf' | ||
|
||
#------------------------------------------------------------------------------ | ||
# CONNECTIONS AND AUTHENTICATION | ||
#------------------------------------------------------------------------------ | ||
listen_addresses = '*' | ||
port = 5432 | ||
max_connections = 100 | ||
|
||
#------------------------------------------------------------------------------ | ||
# RESOURCE USAGE (except WAL) | ||
#------------------------------------------------------------------------------ | ||
shared_buffers = 32MB | ||
|
||
#------------------------------------------------------------------------------ | ||
# ERROR REPORTING AND LOGGING | ||
#------------------------------------------------------------------------------ | ||
log_destination = 'stderr' | ||
logging_collector = on | ||
log_directory = '~NEARD_LIN_PATH~/logs' | ||
log_filename = 'postgresql.log' | ||
log_file_mode = 0777 | ||
log_truncate_on_rotation = off | ||
log_rotation_age = 0 | ||
log_rotation_size = 0 | ||
|
||
client_min_messages = notice | ||
log_min_messages = warning | ||
log_min_error_statement = error | ||
log_min_duration_statement = -1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@ECHO OFF | ||
|
||
%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1 | ||
copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf" | ||
copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
postgresqlVersion = "11.3" | ||
postgresqlCtlExe = "bin/pg_ctl.exe" | ||
postgresqlCliExe = "bin/psql.exe" | ||
postgresqlDumpExe = "bin/pg_dump.exe" | ||
postgresqlDumpAllExe = "bin/pg_dumpall.exe" | ||
postgresqlConf = "data/postgresql.conf" | ||
postgresqlUserConf = "data/pg_hba.conf" | ||
postgresqlAltConf = "postgresql.conf.nrd" | ||
postgresqlAltUserConf = "pg_hba.conf.nrd" | ||
postgresqlPort = "5432" | ||
postgresqlRootUser = "postgres" | ||
postgresqlRootPwd = "" | ||
|
||
bundleRelease = "@RELEASE_VERSION@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# TYPE DATABASE USER ADDRESS METHOD | ||
host all all 127.0.0.1/32 trust |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#------------------------------------------------------------------------------ | ||
# FILE LOCATIONS | ||
#------------------------------------------------------------------------------ | ||
data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql11.3/data' | ||
hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql11.3/data/pg_hba.conf' | ||
ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql11.3/data/pg_ident.conf' | ||
|
||
#------------------------------------------------------------------------------ | ||
# CONNECTIONS AND AUTHENTICATION | ||
#------------------------------------------------------------------------------ | ||
listen_addresses = '*' | ||
port = 5432 | ||
max_connections = 100 | ||
|
||
#------------------------------------------------------------------------------ | ||
# RESOURCE USAGE (except WAL) | ||
#------------------------------------------------------------------------------ | ||
shared_buffers = 32MB | ||
|
||
#------------------------------------------------------------------------------ | ||
# ERROR REPORTING AND LOGGING | ||
#------------------------------------------------------------------------------ | ||
log_destination = 'stderr' | ||
logging_collector = on | ||
log_directory = '~NEARD_LIN_PATH~/logs' | ||
log_filename = 'postgresql.log' | ||
log_file_mode = 0777 | ||
log_truncate_on_rotation = off | ||
log_rotation_age = 0 | ||
log_rotation_size = 0 | ||
|
||
client_min_messages = notice | ||
log_min_messages = warning | ||
log_min_error_statement = error | ||
log_min_duration_statement = -1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@ECHO OFF | ||
|
||
%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1 | ||
copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf" | ||
copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
postgresqlVersion = "9.4.22" | ||
postgresqlCtlExe = "bin/pg_ctl.exe" | ||
postgresqlCliExe = "bin/psql.exe" | ||
postgresqlDumpExe = "bin/pg_dump.exe" | ||
postgresqlDumpAllExe = "bin/pg_dumpall.exe" | ||
postgresqlConf = "data/postgresql.conf" | ||
postgresqlUserConf = "data/pg_hba.conf" | ||
postgresqlAltConf = "postgresql.conf.nrd" | ||
postgresqlAltUserConf = "pg_hba.conf.nrd" | ||
postgresqlPort = "5432" | ||
postgresqlRootUser = "postgres" | ||
postgresqlRootPwd = "" | ||
|
||
bundleRelease = "@RELEASE_VERSION@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# TYPE DATABASE USER ADDRESS METHOD | ||
host all all 127.0.0.1/32 trust |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#------------------------------------------------------------------------------ | ||
# FILE LOCATIONS | ||
#------------------------------------------------------------------------------ | ||
data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.4.22/data' | ||
hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.4.22/data/pg_hba.conf' | ||
ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.4.22/data/pg_ident.conf' | ||
|
||
#------------------------------------------------------------------------------ | ||
# CONNECTIONS AND AUTHENTICATION | ||
#------------------------------------------------------------------------------ | ||
listen_addresses = '*' | ||
port = 5432 | ||
max_connections = 100 | ||
|
||
#------------------------------------------------------------------------------ | ||
# RESOURCE USAGE (except WAL) | ||
#------------------------------------------------------------------------------ | ||
shared_buffers = 32MB | ||
|
||
#------------------------------------------------------------------------------ | ||
# ERROR REPORTING AND LOGGING | ||
#------------------------------------------------------------------------------ | ||
log_destination = 'stderr' | ||
logging_collector = on | ||
log_directory = '~NEARD_LIN_PATH~/logs' | ||
log_filename = 'postgresql.log' | ||
log_file_mode = 0777 | ||
log_truncate_on_rotation = off | ||
log_rotation_age = 0 | ||
log_rotation_size = 0 | ||
|
||
client_min_messages = notice | ||
log_min_messages = warning | ||
log_min_error_statement = error | ||
log_min_duration_statement = -1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@ECHO OFF | ||
|
||
%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1 | ||
copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf" | ||
copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
postgresqlVersion = "9.5.17" | ||
postgresqlCtlExe = "bin/pg_ctl.exe" | ||
postgresqlCliExe = "bin/psql.exe" | ||
postgresqlDumpExe = "bin/pg_dump.exe" | ||
postgresqlDumpAllExe = "bin/pg_dumpall.exe" | ||
postgresqlConf = "data/postgresql.conf" | ||
postgresqlUserConf = "data/pg_hba.conf" | ||
postgresqlAltConf = "postgresql.conf.nrd" | ||
postgresqlAltUserConf = "pg_hba.conf.nrd" | ||
postgresqlPort = "5432" | ||
postgresqlRootUser = "postgres" | ||
postgresqlRootPwd = "" | ||
|
||
bundleRelease = "@RELEASE_VERSION@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# TYPE DATABASE USER ADDRESS METHOD | ||
host all all 127.0.0.1/32 trust |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#------------------------------------------------------------------------------ | ||
# FILE LOCATIONS | ||
#------------------------------------------------------------------------------ | ||
data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.5.17/data' | ||
hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.5.17/data/pg_hba.conf' | ||
ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.5.17/data/pg_ident.conf' | ||
|
||
#------------------------------------------------------------------------------ | ||
# CONNECTIONS AND AUTHENTICATION | ||
#------------------------------------------------------------------------------ | ||
listen_addresses = '*' | ||
port = 5452 | ||
max_connections = 100 | ||
|
||
#------------------------------------------------------------------------------ | ||
# RESOURCE USAGE (except WAL) | ||
#------------------------------------------------------------------------------ | ||
shared_buffers = 52MB | ||
|
||
#------------------------------------------------------------------------------ | ||
# ERROR REPORTING AND LOGGING | ||
#------------------------------------------------------------------------------ | ||
log_destination = 'stderr' | ||
logging_collector = on | ||
log_directory = '~NEARD_LIN_PATH~/logs' | ||
log_filename = 'postgresql.log' | ||
log_file_mode = 0777 | ||
log_truncate_on_rotation = off | ||
log_rotation_age = 0 | ||
log_rotation_size = 0 | ||
|
||
client_min_messages = notice | ||
log_min_messages = warning | ||
log_min_error_statement = error | ||
log_min_duration_statement = -1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@ECHO OFF | ||
|
||
%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1 | ||
copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf" | ||
copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
postgresqlVersion = "9.6.13" | ||
postgresqlCtlExe = "bin/pg_ctl.exe" | ||
postgresqlCliExe = "bin/psql.exe" | ||
postgresqlDumpExe = "bin/pg_dump.exe" | ||
postgresqlDumpAllExe = "bin/pg_dumpall.exe" | ||
postgresqlConf = "data/postgresql.conf" | ||
postgresqlUserConf = "data/pg_hba.conf" | ||
postgresqlAltConf = "postgresql.conf.nrd" | ||
postgresqlAltUserConf = "pg_hba.conf.nrd" | ||
postgresqlPort = "5432" | ||
postgresqlRootUser = "postgres" | ||
postgresqlRootPwd = "" | ||
|
||
bundleRelease = "@RELEASE_VERSION@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# TYPE DATABASE USER ADDRESS METHOD | ||
host all all 127.0.0.1/32 trust |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#------------------------------------------------------------------------------ | ||
# FILE LOCATIONS | ||
#------------------------------------------------------------------------------ | ||
data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.6.13/data' | ||
hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.6.13/data/pg_hba.conf' | ||
ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.6.13/data/pg_ident.conf' | ||
|
||
#------------------------------------------------------------------------------ | ||
# CONNECTIONS AND AUTHENTICATION | ||
#------------------------------------------------------------------------------ | ||
listen_addresses = '*' | ||
port = 5432 | ||
max_connections = 100 | ||
|
||
#------------------------------------------------------------------------------ | ||
# RESOURCE USAGE (except WAL) | ||
#------------------------------------------------------------------------------ | ||
shared_buffers = 32MB | ||
|
||
#------------------------------------------------------------------------------ | ||
# ERROR REPORTING AND LOGGING | ||
#------------------------------------------------------------------------------ | ||
log_destination = 'stderr' | ||
logging_collector = on | ||
log_directory = '~NEARD_LIN_PATH~/logs' | ||
log_filename = 'postgresql.log' | ||
log_file_mode = 0777 | ||
log_truncate_on_rotation = off | ||
log_rotation_age = 0 | ||
log_rotation_size = 0 | ||
|
||
client_min_messages = notice | ||
log_min_messages = warning | ||
log_min_error_statement = error | ||
log_min_duration_statement = -1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
bundle.name = postgresql | ||
bundle.release = r3 | ||
bundle.release = r4 | ||
bundle.type = bins | ||
bundle.format = 7z | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters