Username or Password Incorrect

Hi All,

came into work this morning and went too update the displays.

Tried getting to the cms however it wasn’t loading so i did docker-compose stop then docker-compose down.

After that i then brought the containers up with docker-compose up -d then docker-compose stop then start.

This time the xibo login page come up however it said that the username and password are incorrect.

I tried using xibo_admin and password which did not work either, I had htis issue the other week where it was not connecting to the database (using our own mysql) to the root user which worked, however after changing it back to the xibo user or the root user (for the mysql db) it still says username of password is incorrect.

Has anyone got any ideas?

Thank you.

Just so if anyone else comes across this error.

I had to:
Had to find the web container, then run:
• docker exec -it xibo_cms-web_01 bash
then had to connect to the mysql server running on our network
• mysql -h mysqlServerIP -P 3306 -u xibo -p
then enter the password
then I had to tell it to use the database
• use databaseNameHere
then I had to change the password for the xibo_admin user
• UPDATE user set UserPassword = MD5(“password”), CSPRNG = 0 WHERE UserName = ‘xibo_admin’;

Please note that I am using a seperate Mysql database for my xibo setup hence why i had to connect to a different database.

Thankss