mirror of
https://github.com/plankanban/planka.git
synced 2026-02-24 19:08:59 +03:00
Error in pi_planka_1 and therefore unusable #130
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @LorisTecnology on GitHub (Sep 4, 2021).
I can run the docker but then i got this in pi_planka_1
Error: connect ECONNREFUSED 172.19.0.2:5432
errno: -111,
code: 'ECONNREFUSED',
syscall: 'connect',
address: '172.19.0.2',
port: 5432
}
Tried 7 times. Waiting 5 seconds...
@nickbe commented on GitHub (Sep 6, 2021):
Please check the other posts about docker - how to install and also the issues covered by other users responses. The docker image works, but as always docker can be tricky.
@dbrennand commented on GitHub (Oct 3, 2021):
Hi @LorisTecnology
Are you using the docker-compose file here?
It looks like Planka tried to connect to the Postgres DB 7 times but failed.
Is the postgres container running?
@LorisTecnology commented on GitHub (Oct 4, 2021):
This is what i have now on the database
@LorisTecnology commented on GitHub (Oct 4, 2021):
this is what i have on the other container
@dbrennand commented on GitHub (Oct 4, 2021):
Hi @LorisTecnology
The log line here:
startup process (PID 22) was terminated by signal 11: Segmentation faultIn the Postgres SQL logs looks like the container is failing to start. Looking at this issue it looks like this could be due to a bug in the
libseccomp2library.Please could you try option 1 from LinuxServer.io documentation and see if this fixes your issue :-)
@LorisTecnology commented on GitHub (Oct 4, 2021):
thanks
but i don't really get what should i do
@LorisTecnology commented on GitHub (Oct 4, 2021):
error stil persist
@dbrennand commented on GitHub (Oct 4, 2021):
To clarify, you're trying this on a Raspberry Pi 4?
Run the following command:
wget http://ftp.us.debian.org/debian/pool/main/libs/libseccomp/libseccomp2_2.4.4-1~bpo10+1_armhf.deb && sudo dpkg -i libseccomp2_2.4.4-1~bpo10+1_armhf.debOnce installed, I would reboot the Pi and try again.
You're using the docker-compose.yml file here correct?
@LorisTecnology commented on GitHub (Oct 4, 2021):
yes is a pi
yes i'm using docker compose
@dbrennand commented on GitHub (Oct 4, 2021):
Hmm interesting. I actually deployed Planka myself on a Raspberry Pi 4 yesterday.
Another possible fix is to alter the postgres container image tag to
9.6.23-stretchinstead ofalpine.So modify
image: postgres:alpinein the docker-compose.yml file toimage: postgres:9.6.23-stretch@dbrennand commented on GitHub (Oct 4, 2021):
Did it work then? @LorisTecnology 😄
@LorisTecnology commented on GitHub (Oct 4, 2021):
still trying
is pulling now
i'll let you know
thanks a lot for helping
@LorisTecnology commented on GitHub (Oct 4, 2021):
got this error on planka
@LorisTecnology commented on GitHub (Oct 4, 2021):
@dbrennand commented on GitHub (Oct 4, 2021):
Hmm ok. Could you try deleting the existing volumes and starting up the containers again.
docker-compose down --volumes && docker-compose up -d@LorisTecnology commented on GitHub (Oct 4, 2021):
sure
@LorisTecnology commented on GitHub (Oct 4, 2021):
yes
at least i have a page now
@LorisTecnology commented on GitHub (Oct 4, 2021):
now i have another issue tho
page is loading forever
@dbrennand commented on GitHub (Oct 4, 2021):
Nice!
Ha, yeah this looks like https://github.com/plankanban/planka/issues/135 and https://github.com/plankanban/planka/issues/111. I actually had this issue yesterday myself.
I assume you're trying to access Planka using the IP address of your Raspberry Pi on your home network or something similar?
If so, you'll need to modify:
- BASE_URL=http://localhost:3000in the docker-compose.yml to- BASE_URL=http://external-IP-of-pi:3000E.g:
- BASE_URL=http://192.168.1.3:3000@LorisTecnology commented on GitHub (Oct 4, 2021):
so the Ip of the ip i have as static?
@LorisTecnology commented on GitHub (Oct 4, 2021):
yes
everything works
thanks a lot
@dbrennand commented on GitHub (Oct 4, 2021):
Hi @LorisTecnology
Great! You're most welcome. Glad you got it all working. 👍🏻