SSL을 비활성화한 상태에서 Postgres에 연결
Go를 사용하여 Postgres 데이터베이스에 연결하려고 하면 "SSL이 그렇지 않습니다"라는 오류가 발생할 수 있습니다. 서버에서 활성화되었습니다." 코드에서 SSL 암호화로 연결을 시도했지만 연결하려는 서버가 SSL을 지원하지 않는 경우에 발생하는 오류입니다.
이 문제를 해결하려면 SSL 암호화 없이 DB 연결을 설정해야 합니다. . 방법은 다음과 같습니다.
import ( "database/sql" _ "github.com/lib/pq" // postgres driver ) func main() { // Establish the connection without SSL encryption. db, err := sql.Open("postgres", "user=test password=test dbname=test sslmode=disable") if err != nil { fmt.Printf("Failed to open DB connection: %v", err) return } defer db.Close() // Remember to close the connection after use. // Prepare the statement without the SSL encryption. stmt, err := db.Prepare(selectStatement) if err != nil { fmt.Printf("Failed to prepare statement: %v", err) return } defer stmt.Close() // Remember to close the statement after use. }
위 내용은 SSL이 비활성화된 경우 Go에서 Postgres 데이터베이스에 어떻게 연결합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!