连接数据库服务器,需要提供用户名和密码,如果需要连接远程数据库,还需要提供host(连接地址)。
shell> mysql -h host -uroot -p Enter password: ********
host和user表示你数据库运行服务器的地址和用户名,********表示密码,提示输入密码时输入。如果连接成功,会出现下面的提示信息。
shell> mysql -h host -u user -pEnter password: ******** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 25338 to server version: 8.0.22-standard Type 'help;' or '\h' for help. Type '\c' to clear the buffer.mysql>
如果你连接的是本机数据库地址,可以进行简写
shell> mysql -uroot -p123456
如果数据库允许匿名登录,可以直接使用mysql进行匿名登录。
shell> mysql
退出
mysql> quit Bye