shahryarjb
Hello, I want to create an action for my elixir project, but I can not connect to PSQL database
Error: 9.650 [error] GenServer #PID<0.755.0> terminating
** (DBConnection.ConnectionError) tcp connect (localhost:5432): connection refused - :econnrefused
(db_connection 2.4.1) lib/db_connection/connection.ex:100: DBConnection.Connection.connect/2
(connection 1.1.0) lib/connection.ex:622: Connection.enter_connect/5
(stdlib 3.17) proc_lib.erl:226: :proc_lib.init_p_do_apply/3
Last message: nil
State: Postgrex.Protocol
Error: 9.668 [error] GenServer #PID<0.761.0> terminating
** (DBConnection.ConnectionError) tcp connect (localhost:5432): connection refused - :econnrefused
(db_connection 2.4.1) lib/db_connection/connection.ex:100: DBConnection.Connection.connect/2
(connection 1.1.0) lib/connection.ex:622: Connection.enter_connect/5
(stdlib 3.17) proc_lib.erl:226: :proc_lib.init_p_do_apply/3
Last message: nil
State: Postgrex.Protocol
** (Mix) The database for MishkaDatabase.Repo couldn't be created: killed
Error: Process completed with exit code 1.
As you see I have this error connection refused - :econnrefused
This is my CI yml
https://github.com/shahryarjb/mishka-cms/blob/master/.github/workflows/ci.yml
And this is my test config file:
https://github.com/shahryarjb/mishka-cms/blob/master/config/test.exs
And you can see the last failed action in this repository, thank you, and please help me to fix it
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
I think I’ve found a small improvement I could contribute to <%= web_namespace %>.CoreComponents (installer/templates/phx_web/compo...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
shahryarjb
I changed my port and it works, but I got this error instead of pervious error in my tests, I don’t have this error in my docker
I add it
socket_dir: "/var/run/postgres",to my Ecto config, but I have this error, I think it is nor current pathI changed my
ymland made it like GitHub document, but I have this erroral2o3cr
You’d only use the socket option if you were running the code on the same machine as the database, which isn’t the case here.
The example on that linked Github doc that uses
portslike theci.ymlin your repo does is the “running jobs directly on the worker machine” which setsPOSTGRES_HOSTtolocalhostand relies on Docker’s port forwarding to connect the containers.shahryarjb
Hello Dear @al2o3cr,
I tried everything I thought might it work.
For example
This is how I introduced Elixir
and for my elixir source, I want to connect it to a Postgres database, so I added a
14.1-alpineThen I did like GitHub sample without port after preparing database as a service
Then I have this error:
but if I do like the other part, I mean the link you sheared: Creating PostgreSQL service containers - GitHub Docs
I edited like this and added port :
and added these lines:
With these changes, I could pass the migration part, but in the test section I got error from database
I added
show_sensitive_data_on_connection_error: trueto see more informationAll lines of my CI:
I created a simple elixir application you can access to it (click please) and see all the CI code
I do not know how to fix this, I tried many ways
please help me to figure out
shahryarjb
If I create it like this, it works for me, but I can’t check multi version of elixir and Erlang in a job
shahryarjb
Hello, I fixed all the pervious errors, In testing I have a problem that it shows me
undefined_table, but this table exists and I have no problem in my local and server with these packages.Hence, I tried to drop and migrate again, but it always shows me
I have written these line before, and I have dropped the dB before migration
https://github.com/shahryarjb/mishka-cms/blob/master/.github/workflows/ci.yml#L91-L94
Please help me to fix this
Thank you
Update
I fixed it with some changes in my config and deleting
MIX_ENV=testshahryarjb
Hello Friends,
I have
postgresserror in my new project’s GitHubciagain.Error
error ref: https://github.com/shahryarjb/ChatFCoin/runs/6079339322?check_suite_focus=true
My GitHub CI:
https://github.com/shahryarjb/ChatFCoin/blob/master/.github/workflows/ci.yml
Do you have any idea why it is dropped?
Update
I forgot to put
ENV=testin ci