#mysql user is looking for a home directory, which seems to have not been assigned. To do that, you can execute:
sudo systemctl stop mysql.service
sudo usermod -d /var/lib/mysql/ mysql
sudo systemctl start mysql.service
#or
sudo service mysql stop
sudo usermod -d /var/lib/mysql/ mysql
sudo service mysql start