untu上使用pgAdmin将Postgres连接到本地主机服务

untu上使用pgAdmin将Postgres连接到本地主机服务

本文介绍了如何在Ubuntu上使用pgAdmin将Postgres连接到本地主机服务器?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我用此命令安装了Postgres

I installed Postgres with this command

sudo apt-get install postgresql postgresql-client postgresql-contrib libpq-dev

在终端上使用 psql --version code> psql(PostgreSQL)9.3.4

Using psql --version on terminal I get psql (PostgreSQL) 9.3.4

然后我安装了 pgadmin 与

sudo apt-get install pgadmin3

稍后我打开UI并创建包含此信息的服务器

Later I opened the UI and create the server with this information

但出现此错误

如何修复它?

推荐答案

您尚未创建用户 db 。如果只是一个新的安装,默认用户是 postgres ,密码应该为空。访问后,您可以创建所需的用户。

You haven't created a user db. If its just a fresh install, the default user is postgres and the password should be blank. After you access it, you can create the users you need.

这篇关于如何在Ubuntu上使用pgAdmin将Postgres连接到本地主机服务器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-07 01:44