mysql root password not working ubuntu code example
Example 1: ubuntu mysql-server default root password
sudo mysql --defaults-file=/etc/mysql/debian.cnf
Example 2: how to enable mysql 5.7 root user password on linux
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'SOME_NEW_ROOT_PASSWORD';