För att direkt logga in på en fjärrstyrd mysql-konsol, använd kommandot nedan:
mysql -u {username} -p'{password}' \
-h {remote server ip or name} -P {port} \
-D {DB name}
Till exempel
mysql -u root -p'root' \
-h 127.0.0.1 -P 3306 \
-D local
inget blanksteg efter -p som anges i dokumentationen
Den tar dig direkt till mysql-konsolen genom att byta till den nämnda databasen.