3.1MySQL连接与断开连接

3.1服务器的连接与断开连接

连接服务器你需要提供MySQL用户名和密码,当你的服务器不在同一个机子上你还需要提供服务器的地址,当你连接成功你会看到一下的情况。

$> mysql -h host -u user -p 
Enter password:********

当你输入的信息都全部正确的时候你会看到一下提示:

C:\Users\lihuaqiao>mysql -h host -u user -p
Enter password: ********
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 15
Server version: 8.0.30 MySQL Community Server - GPL

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

当你在登录的时候获得错误信息如下:ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' 这是MySQL的服务没有跑起来,查看第二章运行MySQL服务器。

一些MySQL安装是可以允许匿名用户登录的,如果你安装的时候是允许匿名登录的话,你只需要输入MySQL就可以登录。

$> mysql

退出登录

退出登录你只需要在提示里面输入QUIT或者q即可

mysql> QUIT
Bye

在Unix, 你可以用Control+D退出

后面的教程都是默认在登录的情况下操作

你可能感兴趣的:(MySQL,数据库,mysql,数据库)