Home Database Mysql Tutorial MySQL Getting Started Tutorial 1 - Connecting and Disconnecting the Server

MySQL Getting Started Tutorial 1 - Connecting and Disconnecting the Server

Feb 23, 2017 am 11:21 AM
mysql server

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)!


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

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP's big data structure processing skills PHP's big data structure processing skills May 08, 2024 am 10:24 AM

PHP's big data structure processing skills

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

How to optimize MySQL query performance in PHP?

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

How to use MySQL backup and restore in PHP?

What are the application scenarios of Java enumeration types in databases? What are the application scenarios of Java enumeration types in databases? May 05, 2024 am 09:06 AM

What are the application scenarios of Java enumeration types in databases?

How to insert data into a MySQL table using PHP? How to insert data into a MySQL table using PHP? Jun 02, 2024 pm 02:26 PM

How to insert data into a MySQL table using PHP?

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

How to fix mysql_native_password not loaded errors on MySQL 8.4

How to use MySQL stored procedures in PHP? How to use MySQL stored procedures in PHP? Jun 02, 2024 pm 02:13 PM

How to use MySQL stored procedures in PHP?

How to create a MySQL table using PHP? How to create a MySQL table using PHP? Jun 04, 2024 pm 01:57 PM

How to create a MySQL table using PHP?

See all articles