MySQL
Check the version:
mysql --version
Download tools from mysql.com/downloads
See and update MySQL rights (run the mysql
command):
select user, host, password from mysql.user;
use mysql;
update user set password=PASSWORD("password") where user='root' and host='%';