1 comment

[ 3.2 ms ] story [ 9.2 ms ] thread
What's the point of all this complexity? Since the system already has and uses SSH, why not do it in one line?

    # ssh hostname "echo 'use db; show tables' | mysql -p(password)"
Or, for a remote, interactive MySQL session that prompts for a password:

    # ssh -t hostname mysql -p
The linked content is overkill.