I'm using Ubuntu 18.04. I want to add my user, "davea" to the group "www-data". I tried this
(venv) davea@chicommons-laboratory:/var/www/html/web$ groups
davea sudo
(venv) davea@chicommons-laboratory:/var/www/html/web$ sudo usermod -a -G www-data davea
[sudo] password for davea:
(venv) davea@chicommons-laboratory:/var/www/html/web$ groups
davea sudo
but as you can see, even though the command didn't give any errors, my user is still not added to the group. What am I doing wrong?