mirror of
https://github.com/reconurge/flowsint.git
synced 2026-05-07 20:28:48 -05:00
[GH-ISSUE #55] No create user #596
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 @KIKIPEN on GitHub (Nov 14, 2025).
Original GitHub issue: https://github.com/reconurge/flowsint/issues/55
@dextmorgn commented on GitHub (Nov 14, 2025):
Hello,
Could you run
docker psand make sure all services are running ?@wpavlis commented on GitHub (Nov 14, 2025):
I have the same problem. All 4 services are UP
@dextmorgn commented on GitHub (Nov 14, 2025):
hey @wpavlis thanks for the feedback. Which setup are you running ? dev or prod ?
@wpavlis commented on GitHub (Nov 14, 2025):
I am right after installation, it is the first step. it is only a development environment
maybe it's a problem with a busy port
@dextmorgn commented on GitHub (Nov 14, 2025):
Thanks. Can you run
docker logs flowsint-api-dev?Ah, do you have an other service using port 5001 ?
@pelaohcx commented on GitHub (Nov 14, 2025):
I have the same problem.
@dextmorgn commented on GitHub (Nov 14, 2025):
Hey @pelaohcx, do you have any errors in the web console ?
@pelaohcx commented on GitHub (Nov 14, 2025):
@dextmorgn commented on GitHub (Nov 14, 2025):
and
docker -f logs flowsint-api-prod?@pelaohcx commented on GitHub (Nov 14, 2025):
Yes, this one did have errors.
@dextmorgn commented on GitHub (Nov 14, 2025):
Thanks I'll try to reproduce and let you know.
@dextmorgn commented on GitHub (Nov 14, 2025):
@KIKIPEN, @pelaohcx, @wpavlis I've been able to reproduce the bug. You can re-run
make devormake prod(a second time) again and you should be able to access the app now. The bug happens on the first instancing of the app, while migrating the db.You should be able to still use it after running
make devormake proda second time while I work on a fix. Thanks for raising this issue.@dextmorgn commented on GitHub (Nov 14, 2025):
It should now be fixed with 45d51dd
@pelaohcx commented on GitHub (Nov 14, 2025):
The error persists, but now with letters and colors in the fields.
@dextmorgn commented on GitHub (Nov 14, 2025):
woops I left react scan on. I removed it and keep investigating
@Ntn10 commented on GitHub (Nov 14, 2025):
Excellent tool, my friend. It looks very promising. Like the previous user, I am experiencing the same issue when registering a user. It would be great if you could fix it.
@dextmorgn commented on GitHub (Nov 14, 2025):
Could you run:
And tell me if you still get the same issue ?
@Ntn10 commented on GitHub (Nov 15, 2025):
@Ntn10 commented on GitHub (Nov 15, 2025):
I have followed all the steps from the beginning and the error persists.
@pelaohcx commented on GitHub (Nov 15, 2025):
done, but the error persists, but without the colors in the fields
@dextmorgn commented on GitHub (Nov 15, 2025):
Can you guys send me the results of
docker -f logs flowsint-api-prod?This is very likely related to the api.
@blackdarksy commented on GitHub (Nov 15, 2025):
I think some issues with request is blocked
@Qu4rk0 commented on GitHub (Nov 15, 2025):
Hi, I was working on fixing this yesterday, and this is indeed the issue. I'm not part of the team, but I managed to find the solution.
This happens because we're targeting localhost.
If the tool is installed on a different machine, not our PC/laptop, it won't reach localhost. Here's the command to fix this:
and then:
Do all of this with the tool owner's permissions, and please validate the solution. It worked for me.
Another solution could be to use Firefox and change the request IP address in the developer tools, pointing the request to the IP address where your Flowsint is hosted.
I hope this helps 🙌.
@blackdarksy commented on GitHub (Nov 15, 2025):
Thank u it's working now
@dextmorgn commented on GitHub (Nov 15, 2025):
@blackdarksy thank you for figuring this out ! Indeed the documentation doesn't cover self hosting for now.
I'll create some docs covering this very soon.
@KIKIPEN commented on GitHub (Nov 17, 2025):
I try cmt:

find ~/flowsint -type f -name ".env" -exec sed -i 's|127.0.0.1:5001|<your.ip>:5001|g' {} ;
docker compose -f docker-compose.prod.yml down
docker compose -f docker-compose.prod.yml build --no-cache app
docker compose -f docker-compose.prod.yml up -d
and ressult:
@Twi1ight commented on GitHub (Nov 17, 2025):
means your real ip address
@KIKIPEN commented on GitHub (Nov 17, 2025):
Thanks I try again
@KIKIPEN commented on GitHub (Nov 17, 2025):
So result

@dextmorgn commented on GitHub (Nov 17, 2025):
You need to replace
<your.ip>with your actual IP address.This is a placeholder for you to replace with something like
192.168.x.x@KIKIPEN commented on GitHub (Nov 17, 2025):
From soure or cmd. I try with cmd
@dextmorgn commented on GitHub (Nov 17, 2025):
retry with :
But make sure you replace the part with
192.168.x.xwith your actual server address.@KIKIPEN commented on GitHub (Nov 17, 2025):
I try the same cmd and no create user
@dextmorgn commented on GitHub (Nov 17, 2025):
Same error ?
@KIKIPEN commented on GitHub (Nov 17, 2025):
Exactly.

@dextmorgn commented on GitHub (Nov 17, 2025):
Well it seems your IP is not correctly configured, as the message error shows incorrect url. Meaning your app was not rebuilt with latest changes or your .env files are still not configured properly; can you show output of:
Feel free to obfuscate any credential before sending
@KIKIPEN commented on GitHub (Nov 17, 2025):
I changed the .env config and created the user to login. Thank you very much!