postgresql 修改数据存储位置后,运行报错

2021/10/16 2:16:04

本文主要是介绍postgresql 修改数据存储位置后,运行报错,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

注:我最终没有按此方法解决,我是重新安装postgresql先修改配置,再运行;

其他资料:

错误:“在Unix域套接字上的连接”/var/run/PostgreSQL/.s.PGSQL.5432“? - 问答 - 云+社区 - 腾讯云 完全错误: Creating 'pcore' PostgreSQL user... psql: could not connect to server: No such file or directory Is the server running locally an...icon-default.png?t=L9C2https://cloud.tencent.com/developer/ask/148153问题解决:psql: could not connect to server: No such file or directory Is the server running locally and accepting connections on Unix domain socket "/var/run/postgresql/.s.PGSQL.5432"? - Splace - 博客园错误提示: psql: could not connect to server: No such file or directory Is the server running locallhttps://www.cnblogs.com/space-place/p/5257127.html

 

错误提示:

psql: could not connect to server: No such file or directory
 Is the server running locally and accepting
 connections on Unix domain socket "/var/run/postgresql/.s.PGSQL.5432"?
 
 出现该问题的很多,以下是目前碰到的几种情况,之后碰到继续补充:
 
 1.删除了/tmp路径中的.s.PGSQL.5432 与.s.PGSQL.5432.lock文件
 
 解决:重启数据库 $sudo service postgresql restart
 
 2.修改监听端口:
 之前用5434监听,后来改为5432,数据库启动,但是psql无法进入数据库,通过psql -p 5432可以进入。
 
 解决:安装时配置了端口PGPORT。修改~/.bash_profile或/etc/profile文件中的端口指定。
 
 3.修改了postgresql.conf 中的unix_socket_directories

分析见两篇博文:
http://francs3.blog.163.com/blog/static/40576727201332594924829/
http://blog.csdn.net/huguangshanse00/article/details/40413549

引用其中:
"先来看看 socket 文件 "/tmp/.s.PGSQL.1921",其中 1921 是 pg 的端口号; socket 文件可以通过
 postgresql.conf 文件以下参数配置:
#unix_socket_directory = ''
#unix_socket_permissions = 0777
备注:其中参数 unix_socket_directory 用来配置 socket 文件的目录,默认是 /tmp 目录,参数
unix_socket_permissions 用来设置 socket 文件的权限。"
        
 解决方法:指定host,用psql -h 连接 



这篇关于postgresql 修改数据存储位置后,运行报错的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程