我的编程空间,编程开发者的网络收藏夹
学习永远不晚

PostgreSQL数据库启动时socket存储目录的配置是什么

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

PostgreSQL数据库启动时socket存储目录的配置是什么

这篇文章主要讲解了“PostgreSQL数据库启动时socket存储目录的配置是什么”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“PostgreSQL数据库启动时socket存储目录的配置是什么”吧!

unix_socket_directories参数默认为/tmp,由于该目录是临时目录,以免误操作,一般设置在其他目录中。
下面把unix_socket_directories设置为/data/pg12,重新启动

[pg12@localhost pg120db]$ grep 'unix' postgresql.conf 
unix_socket_directories = '/data/pg12' # comma-separated list of directories
#unix_socket_directories = '/tmp'   # comma-separated list of directories
#unix_socket_group = ''       # (change requires restart)
#unix_socket_permissions = 0777     # begin with 0 to use octal notation
[pg12@localhost pg120db]$ 
[pg12@localhost pg120db]$ pg_ctl restart
pg_ctl: PID file "/data/pgsql/pg120db/postmaster.pid" does not exist
Is server running?
trying to start server anyway
waiting for server to start....2019-11-18 18:17:35.123 CST [15542] LOG:  starting PostgreSQL 12.0 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-16), 64-bit
2019-11-18 18:17:35.123 CST [15542] LOG:  listening on IPv4 address "0.0.0.0", port 5432
2019-11-18 18:17:35.123 CST [15542] LOG:  listening on IPv6 address "::", port 5432
2019-11-18 18:17:35.155 CST [15542] LOG:  listening on Unix socket "/data/pg12/.s.PGSQL.5432"
2019-11-18 18:17:35.237 CST [15542] LOG:  redirecting log output to logging collector process
2019-11-18 18:17:35.237 CST [15542] HINT:  Future log output will appear in directory "pg_log".
 done
server started

尝试连接数据库

[pg12@localhost pg120db]$ psql -d testdb
psql: error: could not connect to server: could not connect to server: No such file or directory
   Is the server running locally and accepting
   connections on Unix domain socket "/tmp/.s.PGSQL.5432"?

提示找不到socket(默认在/tmp下),可使用指定主机&端口连接


但这样的连接方式不是本地连接

[pg12@localhost ~]$ netstat -anpo|grep psql
(Not all processes could be identified, non-owned process info
 will not be shown, you would have to be root to see it all.)
tcp6       0      0 ::1:52206               ::1:5432                ESTABLISHED 16200/psql           keepalive (7207.79/0/0)

设置参数PGHOST,使用本地连接(PGHOST behaves the same as the host connection parameter.)

[pg12@localhost pg120db]$ export PGHOST=/data/pg12
[pg12@localhost pg120db]$ psql -d testdb
Expanded display is used automatically.
psql (12.0)
Type "help" for help.
...
[pg12@localhost ~]$ netstat -anpo|grep psql
(Not all processes could be identified, non-owned process info
 will not be shown, you would have to be root to see it all.)
unix  3      [ ]         STREAM     CONNECTED     876042   15681/psql           
[pg12@localhost ~]$

或者使用-h指定为socket所在目录

[pg12@localhost ~]$ psql -h /data/pg12
Expanded display is used automatically.
psql (12.0)
Type "help" for help.
[local:/data/pg12]:5432 pg12@testdb=# 
...
[pg12@localhost ~]$ netstat -anpo|grep psql
(Not all processes could be identified, non-owned process info
 will not be shown, you would have to be root to see it all.)
unix  3      [ ]         STREAM     CONNECTED     880596   16309/psql           
[pg12@localhost ~]$

感谢各位的阅读,以上就是“PostgreSQL数据库启动时socket存储目录的配置是什么”的内容了,经过本文的学习后,相信大家对PostgreSQL数据库启动时socket存储目录的配置是什么这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是亿速云,小编将为大家推送更多相关知识点的文章,欢迎关注!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

PostgreSQL数据库启动时socket存储目录的配置是什么

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

数据库中存储的数据显示设置攻略是什么

这篇文章的内容主要围绕数据库中存储的数据显示设置攻略是什么进行讲述,文章内容清晰易懂,条理清晰,非常适合新手学习,值得大家去阅读。感兴趣的朋友可以跟随小编一起阅读吧。希望大家通过这篇文章有所收获!数据库中存储的数据通常会有一些代码值字段,如
2023-06-04

SQLServer 错误 1204 SQL Server 数据库引擎的实例此时无法获得 LOCK 资源。 请在活动用户较少时重新运行该语句。 请询问数据库管理员,检查此实例的锁定和内存配置,或检查是否

详细信息 Attribute 值 产品名称 SQL Server 事件 ID 1204 事件源 MSSQLSERVER 组件 SQLEngine 符号名称 LK_OUTOF 消息正文 SQL Server ...
SQLServer 错误 1204 SQL Server 数据库引擎的实例此时无法获得 LOCK 资源。 请在活动用户较少时重新运行该语句。 请询问数据库管理员,检查此实例的锁定和内存配置,或检查是否
2023-11-05

编程热搜

目录