哈喽!大家好,很高兴又见面了,我是编程网的一名作者,今天由我给大家带来一篇《无法使用 Go 和 pq 连接到 postgresql》,本文主要会讲到等等知识点,希望大家一起学习进步,也欢迎大家关注、点赞、收藏、转发! 下面就一起来看看吧!
问题内容我正在尝试将 go 应用程序与 postgresql 连接。
应用程序导入postgresql驱动程序:
"crypto/tls"
"database/sql"
"fmt"
"log"
"os"
"os/signal"
...
_ "github.com/go-sql-driver/mysql"
_ "github.com/lib/pq"
_ "github.com/mattn/go-sqlite3"
并像它一样使用连接到数据库:
driver, cnxn := dbfromuri(dburi)
db, err := sql.open(driver, cnxn)
if err != nil {
panic(err)
}
dbfromuri 方法只是分割信息
func dbfromuri(uri string) (string, string) {
parts := strings.split(uri, "://")
return parts[0], parts[1]
}
当我运行以下命令时,我的 uri 在本地工作:psql postgresql://user:[email protected]:5432/lcp
但是在 go i go 中,我得到了
./lcpserver
2021/03/07 02:00:42 reading config /root/lcp-server-install/lcp-home/config/config.yaml
panic: pq: ssl is not enabled on the server
我在 go 中尝试使用此 uri,但没有成功:psql postgresql://user:[email protected]:5432/lcp?sslmode=disable
您知道为什么我无法连接吗? 我尝试使用我的 aws rds postgres 数据库,并得到相同的结果。感谢您的帮助。
服务器端完整代码 https://github.com/readium/readium-lcp-server/blob/master/lcpserver/lcpserver.go
只要连接成功,我就会更改拼写错误和演示。但在我风格的lcp服务器中遇到了同样的问题。
postgres://user:[email protected]:5432/lcp?sslmode=disable
编辑2:
该错误是由于脚本尝试准备命令所致。我更新了最小的示例,但它也失败了。
package main
import (
"database/sql"
"fmt"
"strings"
_ "github.com/lib/pq"
)
func dbfromuri(uri string) (string, string) {
parts := strings.split(uri, "://")
return parts[0], parts[1]
}
func main() {
driver, cnxn := dbfromuri("postgres://user:[email protected]:5432/lcp?sslmode=disable")
fmt.println("the driver " + driver)
fmt.println("the cnxn " + cnxn)
db, err := sql.open(driver, cnxn)
_, err = db.prepare("select id,encryption_key,location,length,sha256,type from content where id = ? limit 1")
if err != nil {
fmt.println("prepare failed")
fmt.println(err)
}
if err == nil {
fmt.println("successfully connected")
} else {
panic(err)
}
}
我得到: 准备失败
pq: SSL is not enabled on the server
2021/03/07 17:20:13 This panic 3
panic: pq: SSL is not enabled on the server
解决方案
第一个问题是连接字符串中的拼写错误:postgresql://user:[email protected]:5432/lcp?sslmode=disable
。在 go 代码中,它应该是 postgres://user:[email protected]:5432/lcp?sslmode=disable
。
我们还需要将完整的连接字符串作为第二个参数传递给 sql.open
。目前, dbfromuri
函数返回 user:[email protected]:5432/lcp?sslmode=disable
,但我们需要 postgres://user:[email protected]:5432/lcp?sslmode=disable
,因为 pq is waiting for this prefix parse it。
修复此问题后,我能够根据您的代码使用最小的 postgres 客户端建立连接。
要亲自尝试此操作,请使用以下命令启动服务器:
docker run --rm -p 5432:5432 -e postgres_password=some_password postgres
并尝试使用以下客户端代码进行连接:
package main
import (
"database/sql"
"fmt"
_ "github.com/lib/pq"
)
func main() {
cnxn := "postgres://postgres:[email protected]:5432/lcp?sslmode=disable"
_, err := sql.Open("postgres", cnxn)
if err != nil {
panic(err)
}
_, err = db.Prepare("SELECT id,encryption_key,location,length,sha256,type FROM content WHERE id = ? LIMIT 1")
if err != nil {
fmt.Println("Prepare failed")
panic(err)
}
}
今天关于《无法使用 Go 和 pq 连接到 postgresql》的内容就介绍到这里了,是不是学起来一目了然!想要了解更多关于的内容请关注编程网公众号!