我对postgreSQL很新,并且在我的Eclipese中努力创建连接。
这是我到目前为止所做的事情:
现在我尝试在Eclipse中创建连接,但是我收到错误“致命错误:用户密码验证失败”testuser“
我查了一个类似的帖子( Getting authentication failed error with postgresql from command line )但无法解决问题。
你能帮忙吗?答案 0 :(得分:3)
要通过命令行连接PostgreSQL,你必须安装一个名为" psql"的PostgreSQL提供的工具。如果没有安装。
然后使用以下命令连接到PostgreSQL数据库。
psql -h localhost -p 5432 -U postgres
说明:
localhost: is the hostname of machine where PostgreSQL is installed.
5432 : is the default PostgreSQL port
postgres : is the username of to connect to DB
解决您的问题:
FATAL: password authentication failed for user "testuser"
指定错误消息时,数据库中不存在用户,或者您提供给连接的密码不正确。重新验证您的用户和密码,然后重试。
一切顺利。