This repository was archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 229
[-] fix pgwatch2-postgres Docker image
#606
Merged
pashagolub
merged 4 commits into
cybertec-postgresql:master
from
frastr:bugfix-docker-postgres
Feb 23, 2023
Merged
[-] fix pgwatch2-postgres Docker image
#606
pashagolub
merged 4 commits into
cybertec-postgresql:master
from
frastr:bugfix-docker-postgres
Feb 23, 2023
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fix error on create postgresql cluster: install: cannot change permissions of 'pg_stat_tmp': No such file or directory Error: /usr/lib/postgresql/15/bin/pg_ctl/usr/lib/postgresql/15/bin/pg_ctl start -D /var/lib/postgresql/15/main-l /var/log/postgresql/postgresql-15-main.log --wait -s -o -cconfig_file="/etc/postgresql/15/main/postgresql.conf" exited withstatus 1: LOG: unrecognizedconfiguration parameter "stats_temp_directory" in file"/etc/postgresql/15/main/pgwatch_postgresql.conf" line 15 FATAL: configuration file"/etc/postgresql/15/main/pgwatch_postgresql.conf" contains errors
…esql v15
Use 9.4 instead of 9.2
Error message on version 9.2:
psql:/pgwatch2/metrics/00_helpers/get_stat_statements/9.2/metric.sql:36: ERROR: column s.total_time does not exist
LINE 11: s.query, s.calls, s.total_time, s.rows, s.shared_blks_hit...
^
psql:/pgwatch2/metrics/00_helpers/get_stat_statements/9.2/metric.sql:38: ERROR: current transaction is aborted, commands ignored until end of transaction block
psql:/pgwatch2/metrics/00_helpers/get_stat_statements/9.2/metric.sql:39: ERROR: current transaction is aborted, commands ignored until end of transaction block
psql:/pgwatch2/metrics/00_helpers/get_stat_statements/9.2/metric.sql:63: ERROR: current transaction is aborted, commands ignored until end of transaction block
Error message: mkdir: cannot create directory '/var/run/grafana': File exists
Missing permission if /var/lib/grafana is a local directory and not a docker volume.
Collaborator
|
What exactly image produces this error? |
Contributor
Author
|
Hello Pavlo, on docker hub: $ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
cybertec/pgwatch2-postgres latest 0fa947105e45 2 days ago 1.17GBAnd my development: $ git log -1 HEAD
commit 4ace90381bfccbd370e8b10cb116132820b9de34 (HEAD -> master, frastr/master)
Merge: 7e6caf7 c5af43e
Author: Pavlo Golub <[email protected]>
Date: Fri Feb 17 15:22:40 2023 +0100
Merge pull request #592 from dtmdl/timescale-bootstrap
[-] ensure bootstrap of a timescale metrics db includes necessary metric-time function
$ ./build-docker-postgres.shMy test docker compose: version: "3.9"
services:
server:
image: cybertec/pgwatch2-postgres:latest
container_name: pgwatch2
network_mode: bridge
ports:
- 127.0.0.1:6010:3000
- 127.0.0.1:6011:8080
- 127.0.0.1:6012:8081
- 127.0.0.1:6013:5432
volumes:
- ./data/pg:/var/lib/postgresql
- ./data/grafana:/var/lib/grafana
- ./data/pw2:/pgwatch2/persistent-config |
Contributor
Author
|
I have tested with the new docker image: $ docker images | grep pgwatch2
cybertec/pgwatch2-postgres latest d4e17244e72e 26 hours ago 1.17GBWith docker volumes ... ...
volumes:
- pg:/var/lib/postgresql
- grafana:/var/lib/grafana
- pw2:/pgwatch2/persistent-config
volumes:
pg:
grafana:
pw2:it looks ok. See here my commit 1e5d0582f9 But with volumes as local directory, volumes:
- ./data/pg:/var/lib/postgresql
- ./data/grafana:/var/lib/grafana
- ./data/pw2:/pgwatch2/persistent-configi still get the same errors. |
pashagolub
added a commit
to cybertec-postgresql/pgwatch
that referenced
this pull request
Feb 22, 2023
pashagolub
added a commit
to cybertec-postgresql/pgwatch
that referenced
this pull request
Feb 22, 2023
pgwatch2-postgres Docker image
Collaborator
|
Thanks for your help |
Contributor
Author
|
Thanks for merging and this great project |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
See on my 4 commit messages for description my fixes and optimizations for build docker image postgres and create/run as docker container.
Best regards,
Frank