我正在从源代码中为postgresql安装创建一个坞映像。下面是我根据创建的Dockerfile
FROM ubuntu
RUN apt-get update && apt-get install gcc zlib1g-dev libreadline6-dev apt-utils make -y
RUN mkdir -p /tmp/downloads
ADD https://ftp.postgresql.org/pub/source/v9.6.6/postgresql-9.6.6.tar.gz /tmp/downloads
RUN cd /tmp/downloads &
我正在尝试为error构建一个Docker映像,但是在dbconfig-公共对话框中我得到了这个错误。
unable to connect to postgresql server.
error encountered creating user:
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.54
我使用的是CentOS Linux版本7.5.1804 (核心)
当我以postgres身份登录并运行时:
bash-4.2$ /usr/pgsql-11/bin/initdb -D /var/lib/pgsql/11/data
The files belonging to this database system will be owned by user "postgres".
This user must also own the server process.
The database cluster will be initialized with locale &
我在FreeBSD上运行PostgreSQL 9.3。FreeBSD使用pgsql作为PostgreSQL的默认系统用户。我的/usr/local/pgsql/data/pg_hba.conf看起来像这样:
# TYPE DATABASE USER ADDRESS METHOD
local all pgsql peer
local all all
我正在使用Azure Postgresql数据库,并使用Cloud运行psql脚本,没有问题。我现在正试图通过shp2pgsql命令加载一些shp文件。云外壳的响应如下:
bash: shp2pgsql: command not found
是否有可能在Cloud中使用shp2pgsql,或者我遗漏了什么?我已经成功地在Postgresql服务器上创建了postgis扩展。
在Centos 6上启动PostgreSQL9.4有困难。
我无法运行initdb,因为数据目录已经存在。
但是我无法启动服务,因为数据目录丢失了!
[centos@dave-gbp ~]$ sudo service postgresql-9.4 start
/var/lib/pgsql/9.4/data is missing. Use "service postgresql-9.4 initdb" to initialize the cluster first.
[
首先,必须做出必要的“我是python新手”的评论。
我的一些环境细节:-Windows7-Python2.7- Django 1.3.4 - PostgreSQL 9.2
当我试图运行"manage.py syncdb“时,我得到了下面的错误。
File "c:\python27\lib\site-packages\fts\backends\pgsql.py", line 46, in __init__
raise InvalidFtsBackendError("PostgreSQL with tsearch2 support is needed
我刚刚在OSX上安装了Postgres9.3.4和PostGIS 2.1,使用的是的最新版本。
但是,当我试图在数据库上创建空间扩展时,我做不到,因为Postgres声称无法看到扩展名文件:
:~ anna$ psql -d land -c "CREATE EXTENSION postgis;"
ERROR: could not open extension control file
"/usr/local/Cellar/postgresql/9.3.4/share/postgresql/extension/postgis.control":
No suc
在Centos 8上安装PostgreSQL 12失败,出现以下错误: initdb: error: invalid locale settings; check LANG and LC_* environment variables
pg_ctl: directory "/postgres/pgdata" does not exist
psql: error: could not connect to server: could not connect to server: No such file or directory
Is the server runnin
我刚刚在一个全新的15.04 ubuntu安装上安装了postgresql 9.4,我无法启动psql服务器。每次尝试运行sudo -u postgres psql时,都会出现以下错误:
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"?
我试过这里和其他论坛上的每一
我正在通过vpn连接在远程服务器上使用postgresql。
我的debian 12安装不允许我创建本地服务器,并要求我验证是否允许连接到unix域套接字/var/run/postgresql/.s.PGSQL.5432
帕德明说:
超时过期
su
Password:
root@mycomputer:/home/me# su - postgres
postgres@mycomputer:~$ psql
psql: error: could not connect to server: File o directory non esistente
Verifica che il se
我正在尝试为TileMill安装OSM,下面是本教程:
我在MAC上安装了PostGres.app +PostgreSQL9.2。我收到了这个osm2pgsql错误,我想知道如何修复这个错误:
osm2pgsql SVN version 0.84.0 (64bit id space)
Usage error. For further information see:
osm2pgsql -h|--help
[name]:~ [name]$ which osm2pgsql
/usr/local/bin/osm2pgsql
当我尝试连接和访问或启动PostgreSQL时,我收到此错误!
Sabayon postgresql-9.6 # sudo su -c "createuser --superuser gisuser" postgres
Createuser: could not connect to database postgres: could not connect to server: File or directory not found
The server is running locally and accepting
Connections in the Unix domai
无法在CentOS 7上启动postgresql-9.5。
我按照这个页面-- --在CentOS上安装了数据库服务器。
在设置了setenforce 0之后,我也尝试了同样的方法,但也没有任何帮助。
我以root的身份执行所有操作。
systemctl start postgresql-9.5.service
Job for postgresql-9.5.service failed because the control process exited with error
code. See "systemctl status postgresql-9.5.service
如果我尝试运行postgres命令,就会得到:
2020-12-29 00:14:53.213 GMT [34374] LOG: skipping missing configuration file "/usr/local/pgsql/data/postgresql.auto.conf"
postgres: could not find the database system
Expected to find it in the directory "/usr/local/pgsql/data",
but could not open file "/
我在Debian7.6上安装了R (3.1.1)和PostgreSQL 9.4。
I want to install RPostgreSQL but the compilation fails with the following error:
In file included from RS-PQescape.c:7:0:
RS-PostgreSQL.h:23:26: fatal error: libpq-fe.h: No such file or directory
compilation termi