Unable to get Login Credentials When install canvas using docker

Jump to solution
GaneshPande
Community Member

I have installed canvas automated setup using docker and it is installed properly. The canvas login screen gets displayed. But I was unable to get a credential to log in to canvas, During setup, it did not ask for any credential. Even the Registration link does not appear on the login screen. Which credential needs to use to login to canvas or How can I register a new admin user to the canvas so that I can access the canvas dashboard?

Labels (1)
0 Likes
1 Solution
GaneshPande
Community Member

I have figured out the solution. To create login credentials for canvas, We have to log in to the docker container using the command =>

docker exec -u 0 -it <CONTAINER ID> /bin/bash

Once we log in to the container, run the below command to set up email and password for canvas.

rails db:initial_setup
 
This will ask for the email address and password for canvas admin login.

 

View solution in original post