- Don't create a unix domain socket under /tmp anymore.
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql16?expand=0&rev=4
This commit is contained in:
parent
3cade82d6c
commit
d99baaaa74
@ -1,7 +1,5 @@
|
|||||||
Change the built-in default socket directory to be /run/postgresql.
|
Change the built-in default socket directory to be /run/postgresql.
|
||||||
For backwards compatibility with (probably non-libpq-based) clients that
|
This is to resolve communication problems with clients operating
|
||||||
might still expect to find the socket in /tmp, also create a socket in
|
|
||||||
/tmp. This is to resolve communication problems with clients operating
|
|
||||||
under systemd's PrivateTmp environment, which won't be using the same
|
under systemd's PrivateTmp environment, which won't be using the same
|
||||||
global /tmp directory as the server; see bug #825448.
|
global /tmp directory as the server; see bug #825448.
|
||||||
|
|
||||||
@ -22,7 +20,7 @@ Index: src/include/pg_config_manual.h
|
|||||||
*/
|
*/
|
||||||
#ifndef WIN32
|
#ifndef WIN32
|
||||||
-#define DEFAULT_PGSOCKET_DIR "/tmp"
|
-#define DEFAULT_PGSOCKET_DIR "/tmp"
|
||||||
+#define DEFAULT_PGSOCKET_DIR "/run/postgresql, /tmp"
|
+#define DEFAULT_PGSOCKET_DIR "/run/postgresql"
|
||||||
#else
|
#else
|
||||||
#define DEFAULT_PGSOCKET_DIR ""
|
#define DEFAULT_PGSOCKET_DIR ""
|
||||||
#endif
|
#endif
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
Mon Aug 7 13:08:04 UTC 2023 - Reinhard Max <max@suse.com>
|
Mon Aug 7 13:08:04 UTC 2023 - Reinhard Max <max@suse.com>
|
||||||
|
|
||||||
- Copy postgresql15 to postgresql16 and upgrade to v16beta2.
|
- Copy postgresql15 to postgresql16 and upgrade to v16beta2.
|
||||||
|
- Don't create a unix domain socket under /tmp anymore.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri May 26 11:48:38 UTC 2023 - Reinhard Max <max@suse.com>
|
Fri May 26 11:48:38 UTC 2023 - Reinhard Max <max@suse.com>
|
||||||
|
Loading…
Reference in New Issue
Block a user