标签:too spec pass 学linux 界面 oracle command ora 错误
可以使用第三方客户端工具连接MySQL,也可以使用MySQL提供的命令行工具连接MySQL。命令行工具位于MySQL安装目录下的bin目录中,名为mysql,命令格式如下:
./mysql [-h 远程MySQL主机地址] -u 用户名 -p密码
注意:-u后面可以有空格,也可以没有空格。但是-p后面绝对不能有空格,否则MySQL会提示密码错误。
使用mysql工具也可以连接远程MySQL主机。
建议:使用mysql工具时,建议不要在-p后面直接输入密码,而是在-p后直接回车,这样MySQL会提示输入密码,此时输入密码将不会有回显。直接在命令行中输入密码容易导致密码泄露,Linux还具有命令历史功能,通过history命令可以查看输入的历史命令。
登录成功后,会出现如下界面:
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 7 Server version: 5.7.25 Source distribution Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. 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>
此时进入了mysql的交互模式,可以使用MySQL支持的命令了。
在mysql工具命令行中,使用以下命令退出:
exit
修改用户密码,可以使用bin目录下的mysqladmin工具,命令格式如下:
./mysqladmin -u 用户名 -p旧密码 password 新密码
标签:too spec pass 学linux 界面 oracle command ora 错误
原文地址:https://www.cnblogs.com/yu2006070-01/p/10329193.html