Questions tagged «postgresql»

PostgreSQL是一个功能强大的开源对象关系数据库系统。

2
为Ubuntu 11.10和Postgresql 9.1安装pgadmin 3
我已经在远程ubuntu客户端上安装了pgadmin3,并使用以下命令成功连接到了postgres db: sudo apt-get install pgadmin3 问题是,当连接到postgres 9.1服务器时,它通知我我没有最新的pgadmin,并且某些功能可能无法在此客户端上使用。 通过阅读pgadmin网站,我应该从http://www.enterprisedb.com/products/pgdownload.do下载postgres二进制文件,但这只是一个安装程序。 我如何从该二进制文件安装pgadmin,因为ubuntu不是最新的?另外,还有其他位置可以找到pgadmin二进制文件吗?
10 postgresql 

2
如何使psql默认为localhost?
我有以下情况: saji@geeklap:~$ psql -U postgres psql: FATAL: Ident authentication failed for user "postgres" saji@geeklap:~$ psql -h localhost -U postgres Password for user postgres: psql (8.4.14) SSL connection (cipher: DHE-RSA-AES256-SHA, bits: 256) Type "help" for help. postgres=# 我试图以postgresql用户身份登录到系统中安装的服务器postgres。只有指定,我才能登录-h localhost。而psql文档说: 如果省略主机名,则psql将通过Unix域套接字连接到本地主机上的服务器,或者通过TCP / IP连接到没有Unix域套接字的计算机上的localhost。 参考: http : //www.postgresql.org/docs/current/static/app-psql.html#R2-APP-PSQL-CON 为什么在不指定主机的情况下无法登录,是否有一些配置文件需要任何更改才能使psql文档中所述的事情发生?
10 postgresql  12.04 



1
正在启动PostgreSQL服务器,postgres用户未知
我试图在Ubuntu 14.04上启动PostgreSQL服务器(9.3)。我正在遵循此标准教程:https : //help.ubuntu.com/community/PostgreSQL 从13.10升级到14.04之后,由于更新后在pgadmin中遇到了许多困难,我清除了PostgreSQL安装。 全新安装后使用以下命令: sudo -u postgres psql postgres 返回: sudo: unknown user: postgres sudo: rule-plugin could not be initialized 我找不到任何解决方案,但是我不得不承认,我只使用postgresql来存放我的GIS数据库,并且由于遇到所有这些问题,我不知所措。 编辑: 输出LS -la的/ var / lib中/ PostgreSQL的就是“不能访问的/ var / lib中/ PostgreSQL的:未找到文件或目录”(德国译) 编辑2(清除并重新安装): Paketlisten werden gelesen... Fertig Abhängigkeitsbaum wird aufgebaut. Statusinformationen werden eingelesen.... Fertig Das folgende Paket wurde …

1
如何安装postgresql-8.3?
我懂了 > sudo apt-get install postgresql-8.3 Reading package lists... Done Building dependency tree Reading state information... Done Package postgresql-8.3 is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package 'postgresql-8.3' …

1
PostgreSQL在Ubuntu重启后拒绝TCP / IP连接
这让我感到困惑。 我重新启动了ubuntu服务器,现在尝试与pgadmin连接,并得到以下信息: could not connect to server: Connection timed out (0x0000274C/10060) Is the server running on host "<ip.address>" and accepting TCP/IP connections on port 5432? 在我的postgresql.conf文件中 listen_addresses = '*' 在我的pg_hba.conf中 # DO NOT DISABLE! # If you change this first entry you will need to make sure that the # …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.