Login
Remember
Register
Ask a Question
How do you login to MySql using Unix shell?
0
votes
asked
Jan 13, 2024
in
Sql
by
DavidAnderson
How do you login to MySql using Unix shell?
mysql-interview-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 13, 2024
by
DavidAnderson
We can login through this command:
# [mysql dir]/bin/mysql -h hostname -u <UserName> -p <password>
...