How to use password with official postgres docker image?
Try to use the official postgres docker image:
docker run --rm -d \ --name my-postgres \ --network my-network \ -e POSTGRES_USER=postgres \ -e POSTGRES_PASSWORD=mysuperduperlongpwstring \ -e POSTGRES_DB=postgres \ -v /path/to/postgres/data/:/var/lib/postgresql/data postgres
However, when using Go to create a postgres connection,
psqlInfo := fmt.Sprintf( "host=%s port=%s user=%s password=%s dbname=%s sslmode=%s", os.Getenv("DB_HOST"), os.Getenv("DB_PORT"), os.Getenv("DB_USER"), os.Getenv("DB_PASSWORD"), os.Getenv("DB_NAME"), os.Getenv("DB_SSL_MODE"), ) db, err := sql.Open("postgres", psqlInfo) if err != nil { panic(err) }
I always end with
panic: pq: Password verification failed for user "postgres"
I don't have any other way to verify mysuperduperlongpwstring
:
- Try using
psql -U postgres -d postgres --password
Just connect to the database from within the docker container and provide anything as the password. - Trying to change the password from within the docker container will result in
Error: Must be superuser to change replication roles or change replication properties
That said, basically the following answers no longer work for me:
- How to change the Postgresql docker image password
- How to change PostgreSQL user password?
Due to lack of resources, I changed mysuperduperlongpwstring
multiple times when starting docker and changed my Go PW accordingly, but ended up with the same failure every time.
May I ask what the problem is and how to troubleshoot it? How to reset password using official postgres docker?
Correct answer
In the Docker container, set what you show and start with an empty volume, "postgres" will be the superuser so you won't receive Bug about it needing to be superuser.
The only reasonable explanation I see for this part is that either you are not running psql where you think you are, or you are not starting from an empty volume, so your docker run
command just starts An existing database, so your "-e POSTGRES*" configurations are all ignored. So either way, you're either not connected the way you thought it was, or it's not configured the way you thought it was.
The above is the detailed content of How to use password with official postgres docker image?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



OpenSSL, as an open source library widely used in secure communications, provides encryption algorithms, keys and certificate management functions. However, there are some known security vulnerabilities in its historical version, some of which are extremely harmful. This article will focus on common vulnerabilities and response measures for OpenSSL in Debian systems. DebianOpenSSL known vulnerabilities: OpenSSL has experienced several serious vulnerabilities, such as: Heart Bleeding Vulnerability (CVE-2014-0160): This vulnerability affects OpenSSL 1.0.1 to 1.0.1f and 1.0.2 to 1.0.2 beta versions. An attacker can use this vulnerability to unauthorized read sensitive information on the server, including encryption keys, etc.

The article explains how to use the pprof tool for analyzing Go performance, including enabling profiling, collecting data, and identifying common bottlenecks like CPU and memory issues.Character count: 159

The article discusses writing unit tests in Go, covering best practices, mocking techniques, and tools for efficient test management.

The library used for floating-point number operation in Go language introduces how to ensure the accuracy is...

Queue threading problem in Go crawler Colly explores the problem of using the Colly crawler library in Go language, developers often encounter problems with threads and request queues. �...

Backend learning path: The exploration journey from front-end to back-end As a back-end beginner who transforms from front-end development, you already have the foundation of nodejs,...

The article discusses managing Go module dependencies via go.mod, covering specification, updates, and conflict resolution. It emphasizes best practices like semantic versioning and regular updates.

This article introduces a variety of methods and tools to monitor PostgreSQL databases under the Debian system, helping you to fully grasp database performance monitoring. 1. Use PostgreSQL to build-in monitoring view PostgreSQL itself provides multiple views for monitoring database activities: pg_stat_activity: displays database activities in real time, including connections, queries, transactions and other information. pg_stat_replication: Monitors replication status, especially suitable for stream replication clusters. pg_stat_database: Provides database statistics, such as database size, transaction commit/rollback times and other key indicators. 2. Use log analysis tool pgBadg
