New installation, not able to log in
-
@stoccafisso Thanks for the logs. It seems the culprit is this:
2020-11-08T18:07:28.000Z > peertube@2.4.0 reset-password /app/code/server 2020-11-08T18:07:28.000Z > node ./dist/scripts/reset-password.js "-u" "root" 2020-11-08T18:07:28.000Z 2020-11-08T18:07:29.000Z Killed
This means that it ran out of memory and got Killed. Not sure why, maybe there are many apps on the server already or something? Per https://github.com/Chocobozzz/PeerTube/blob/develop/FAQ.md#should-i-have-a-big-server-to-run-peertube the default 256MB should be enough.
You can run this in the terminal and check if it works:
echo "changeme" | npm run reset-password -- -u root
-
@girish said in New installation, not able to log in:
echo "changeme" | npm run reset-password -- -u root
Thank you @girish. I actually had a lot running on this cloudron, but could not get PeerTube to work even if I removed several other apps to free up memory.
But the above command for some strange reason fixed it and solved the problem. PeerTube is now working!
Thank you