psql: 服务器不支持 SSL,但需要 SSL

psql: server does not support SSL, but SSL was required

正在尝试使用命令提示符连接到 postgresql 服务器。

使用的命令:

psql "sslmode=require host=localhost dbname=test"

抛出错误:

psql: server does not support SSL, but SSL was required

请帮我解决这个问题。 谢谢

这个link建议你可以试试

psql "sslmode=disable host=localhost dbname=test"

或(可能更好)

psql "sslmode=allow host=localhost dbname=test"

这样你应该能够连接到你的服务器。