인프런 커뮤니티 질문&답변
posgresSQL 설치시 에러 내용
작성
·
13
0
안녕하세요. grafana 수강자 입니다. posgresSQL 설치시 에러 내용 입니다. .' Error response from daemon: ports are not available: exposing port TCP 0.0.0.0:5432 -> 127.0.0.1:0: listen tcp 0.0.0.0:5432: bind: address already in use ''
port 번호를 변경하면 실행이 안돼는것 같습니다. 어떻게 해야 할까요?
답변 3
1
안녕하세요. 5432 포트가 이미 사용중인것 같습니다.
linux, mac의 경우 lsof -i :5432 명령어로 사용중인지 여부를 알수 있습니다.
혹은, docker ps 실행해보시면 PORTS 열에서, 이미 postgres를 설치했거나 다른 container가 5432 포트를 사용중인지 알수 있습니다.
docker container 를 지우고 싶다면 docker rm -f 컨데이너ID 로 삭제하실 수 있고,
lsof 명령어에서 PID를 확인하셨다면 kill -9 프로세스ID 로 종료가능합니다.
0
안녕하세요. 5432포트를 변경해서 5433으로 변경을하면 ,docker 에서 실행은돼는데. 또다른 에러메세지가 나오네요.. ㅜㅜ
"in 18+, these Docker images are configured to store database data in a
format which is compatible with "pg_ctlcluster" (specifically, using
major-version-specific directory names). This better reflects how
PostgreSQL itself works, and how upgrades are to be performed.
See also https://github.com/docker-library/postgres/pull/1259
Counter to that, there appears to be PostgreSQL data in:
/var/lib/postgresql/data (unused mount/volume)
This is usually the result of upgrading the Docker image without
upgrading the underlying database using "pg_upgrade" (which requires both
versions).
The suggested container configuration for 18+ is to place a single mount
at /var/lib/postgresql which will then place PostgreSQL data in a
subdirectory, allowing usage of "pg_upgrade --link" without mount point
boundary issues.
See https://github.com/docker-library/postgres/issues/37 for a (long)
discussion around this process, and suggestions for how to do so. "
DB 설치하는부분이 힘드네요..
혹시 postgres 버전을 변경하셨을까요?
docker-compose down -v
docker-compose up -d설치 내용을 삭제하고 다시 실행해보면 좋을것같습니다.
처음에 실패하고 이것저것 시도 하시면서 뭔가 꼬인것 같습니다.





다시 삭제하고 포트 설정을 아래처럼 한다음 해보실래요?