lewagon / setup

Setup instructions for Le Wagon's students on their first day of Web Development Bootcamp
https://www.lewagon.com
18.66k stars 1.6k forks source link

Mention that `sudo -u postgres` throws an error #458

Closed ElvisDot closed 3 months ago

ElvisDot commented 8 months ago

Running sudo -u postgres psql --command "CREATE ROLE \"`whoami`\" LOGIN createdb superuser;" in the users home folder within ubuntu WSL throws the following error

could not change directory to "/home/student_name": Permission denied

The student doing the setup is expected to be in his /home/username folder. Which on WSL ubuntu by default is not accessible to other users on the system. So when the su command switches user, the postgres user can not access the current directory and that is throwing the permission error.

Which is fine because it does not have to access the current folder at all. It just has to connect to the postgres database which usually works. So the permission warning is followed by the success output CREATE ROLE.

This might not be obvious to someone following the setup for the first time. To reduce useless debugging there is now a note hidden in a spoiler that says that this error is okay.