MySQL
keyboard_arrow_down 295 guides
chevron_leftGetting started
check_circle
Mark as learned thumb_up
0
thumb_down
0
chat_bubble_outline
0
Comment auto_stories Bi-column layout
settings
Connecting to the MySQL Server
schedule Aug 12, 2023
Last updated local_offer
Tags MySQL
tocTable of Contents
expand_more Master the mathematics behind data science with 100+ top-tier guides
Start your free 7-days trial now!
Start your free 7-days trial now!
We can connect to the MySQL server using the following command:
mysql -u root -p
Where:
-u root
is used to connect as the MySQL root user (i.e. theu
stands for user, and--user
works as well)-p
tells Mysql to prompt for a password. If you have set a password, you would need to use this parameter.
If done correctly, you should see the following:
mysql>
This means that you are now connected to the MySQL server! Great, let’s start messing around with databases!
Connecting to a specific host
We can also explicitly state the server name (i.e. host name) that we are connecting to:
mysql –h localhost –u root -p
Since our server is hosted by localhost
, we connect using the following: –h localhost
. Note that even if we
do not supply this parameter, the command will simply assume that you are connecting to localhost
by default.
Published by Arthur Yanagisawa
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Comment
Citation
Ask a question or leave a feedback...
thumb_up
0
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!