Home > Database > Mysql Tutorial > body text

MySQL Getting Started Tutorial 1 - Connecting and Disconnecting the Server

黄舟
Release: 2017-02-23 11:21:17
Original
1588 people have browsed it

In order to connect to the server, when calling mysql, you usually need to provide a MySQL username and most likely a password. If the server is running on a machine other than the login server, you also need to specify the hostname. Contact your administrator to find out the parameters used to connect (i.e., the host to connect to, the username, and the password used). After knowing the correct parameters, you can connect as follows:

shell> mysql -h host -u user -p Enter password: ********
Copy after login

host and user respectively represent the host name where the MySQL server is running and the MySQL account user name. Replaced with the correct value when set. ******** represents your password; enter it when mysql displays the Enter password: prompt.

If it works, you should see some introductory information after the mysql> prompt:

shell> mysql -h host -u user -p Enter password: ******** Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 25338 to server version: 5.1.2-alpha-standard

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql>
Copy after login

mysql> The prompt tells you that mysql is ready to enter commands for you.

Some MySQL installations allow users to connect to servers running on localhost as an anonymous (unnamed) user. If this is the case on your machine, you should be able to call mysql without any options to connect to the server:

shell> mysql
Copy after login

After successfully connecting, you can enter QUIT at the mysql> prompt (or \q) Exit at any time:

mysql> QUIT Bye
Copy after login

In Unix, you can also press control-D to disconnect from the server.

Most of the examples in the following chapters assume you are connected to the server. Specified by the mysql> prompt.

The above is the content of MySQL introductory tutorial 1 - connecting and disconnecting the server. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!