File tree Expand file tree Collapse file tree 6 files changed +59
-1
lines changed Expand file tree Collapse file tree 6 files changed +59
-1
lines changed Original file line number Diff line number Diff line change 1+ postgresqlVersion = "17.2.1"
2+ postgresqlCtlExe = "bin/pg_ctl.exe"
3+ postgresqlCliExe = "bin/psql.exe"
4+ postgresqlDumpExe = "bin/pg_dump.exe"
5+ postgresqlDumpAllExe = "bin/pg_dumpall.exe"
6+ postgresqlConf = "data/postgresql.conf"
7+ postgresqlUserConf = "data/pg_hba.conf"
8+ postgresqlAltConf = "postgresql.conf.ber"
9+ postgresqlAltUserConf = "pg_hba.conf.ber"
10+ postgresqlPort = "5432"
11+ postgresqlRootUser = "postgres"
12+ postgresqlRootPwd = ""
13+
14+ bundleRelease = "@RELEASE_VERSION@"
Original file line number Diff line number Diff line change 1+ @ ECHO OFF
2+
3+ %~dp0 bin\initdb.exe -U postgres -A trust -E utf8 -D " %~dp0 data" > " ~BEARSAMPP_WIN_PATH~\logs\postgresql-install.log" 2 >& 1
4+ copy /y " %~dp0 postgresql.conf.ber" " %~dp0 data\postgresql.conf"
5+ copy /y " %~dp0 pg_hba.conf.ber" " %~dp0 data\pg_hba.conf"
Original file line number Diff line number Diff line change 1+ # TYPE DATABASE USER ADDRESS METHOD
2+ host all all 127.0.0.1/32 trust
3+ host all all ::1/128 trust
Original file line number Diff line number Diff line change 1+ #------------------------------------------------------------------------------
2+ # FILE LOCATIONS
3+ #------------------------------------------------------------------------------
4+ data_directory = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql17.2.1/data'
5+ hba_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql17.2.1/data/pg_hba.conf'
6+ ident_file = '~BEARSAMPP_LIN_PATH~/bin/postgresql/postgresql17.2.1/data/pg_ident.conf'
7+
8+ #------------------------------------------------------------------------------
9+ # CONNECTIONS AND AUTHENTICATION
10+ #------------------------------------------------------------------------------
11+ listen_addresses = '*'
12+ port = 5432
13+ max_connections = 100
14+
15+ #------------------------------------------------------------------------------
16+ # RESOURCE USAGE (except WAL)
17+ #------------------------------------------------------------------------------
18+ shared_buffers = 32MB
19+
20+ #------------------------------------------------------------------------------
21+ # ERROR REPORTING AND LOGGING
22+ #------------------------------------------------------------------------------
23+ log_destination = 'stderr'
24+ logging_collector = on
25+ log_directory = '~BEARSAMPP_LIN_PATH~/logs'
26+ log_filename = 'postgresql.log'
27+ log_file_mode = 0777
28+ log_truncate_on_rotation = off
29+ log_rotation_age = 0
30+ log_rotation_size = 0
31+
32+ client_min_messages = notice
33+ log_min_messages = warning
34+ log_min_error_statement = error
35+ log_min_duration_statement = -1
Original file line number Diff line number Diff line change 11bundle.name = postgresql
2- bundle.release = 2024.9.18
2+ bundle.release = 2024.12.1
33bundle.type = bins
44bundle.format = 7z
55
Original file line number Diff line number Diff line change 262616.2 = https://github.com/Bearsampp/module-postgresql/releases/download/2024.4.16/bearsampp-postgresql-16.2-2024.4.16.7z
272716.4 = https://github.com/Bearsampp/module-postgresql/releases/download/2024.9.18/bearsampp-postgresql-16.4-2024.9.18.7z
282817.0-RC1 = https://github.com/Bearsampp/module-postgresql/releases/download/2024.9.18/bearsampp-postgresql-17.0-RC1-2024.9.18.7z
29+ 17.2.1 = https://github.com/Bearsampp/module-postgresql/releases/download/2024.12.1/bearsampp-postgresql-17.2.1-2024.12.1.7z
You can’t perform that action at this time.
0 commit comments