You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I run docker-compose up -d --build vector-admin and when its finished I open http://localhost:3001/ and I get redirected to http://localhost:3001/onboarding-setup.
The UI is new and it says "Create your custom login". When I use some random email and "password" as password to create a custom login I get this error message
Error creating login: [000] System setup has already been completed - you cannot do this again.
I tried deleting the container and the images, pulling everything new and spinning them up again. Nothing helped. I'm stuck.
The text was updated successfully, but these errors were encountered:
The problem seems to be related to the persistence of the PostgreSQL data directory, which retains the initial system setup information even after recreating containers. Here's a step-by-step solution:
Quick Fix
Change the PostgreSQL volume directory or remove it:
Modify the volumes section in your docker-compose.yml for the postgres service as shown below:
Change ~apps/postgres to something like ../postgresa different directory path
OR Remove the existing volume data by running the following command (if you used the default values, it would look like this):
rm -rf ~/apps/postgres
Rebuild and Restart the Services:
Run the following commands ( in the docker compose directory):
# remove the currently running containers
docker-compose down
# Rebuild
docker-compose up -d --build
Bypass Initial Authentication:
If the system setup persists and it directs you to the /auth/sign-in, you then need to bypass the initial authentication by using the root credentials defined in the backend boot script (vectordb/vector-admin/backend/utils/boot/index.js):
How are you running VectorAdmin?
Docker (local)
What happened?
I have used your fantastic tool before and it used to work. This is why it's even more frustrating.
When I use some random email and "password" as password to create a custom login I get this error message
Are there known steps to reproduce?
This is my
.env
file:I run
docker-compose up -d --build vector-admin
and when its finished I openhttp://localhost:3001/
and I get redirected tohttp://localhost:3001/onboarding-setup
.The UI is new and it says "Create your custom login". When I use some random email and "password" as password to create a custom login I get this error message
I tried deleting the container and the images, pulling everything new and spinning them up again. Nothing helped. I'm stuck.
The text was updated successfully, but these errors were encountered: