netbox not starting #603
-
So I am probably missing something obvious or have some orders of doing things in the wrong way but I just dont seem to be able to get netbox started. Tried the wipe, removed the postgres en redis folders, reset all auth but still no go. (not all perse in that order) Keeps on reporting FATAL: password authentication failed for user "netbox" Everything is on one machine. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I think this is probably related to something another user discovered that I put in a warning for in the last release, let's try things in this order (run these commands while in the Malcolm installation directory).
Let me know how it goes! |
Beta Was this translation helpful? Give feedback.
I think this is probably related to something another user discovered that I put in a warning for in the last release, let's try things in this order (run these commands while in the Malcolm installation directory).
./scripts/stop
)rm -rf ./netbox/postgres
find ./netbox/postgres
(just a sanity check, should come up empty)find . ! -user $(id -u)
(this is just to make sure we don't have any files/directories that somehow got created with permissions belonging to anything other than your user, should also come up empty; if it doesn't stop here and we'll need to chown everything under the Malcolm install directory so that it belongs to you)./scripts/auth_setup
then selectn…