刚申请的阿里云服务器,建好实例,安装完mysql,终端运行
mysql -h 127.0.0.1
报错:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
这是因为需要你的mysql的登录密码,顺手加上密码就好了:
mysql -h 127.0.0.1 -uroot -pLz_123456
-p后面的Lz_123456是mysql的密码。我这里是提前已经重置过了mysql的密码了,如果没有重置你的密码,可以先重置你的密码。
然后就进入了mysql了
此时终端结果:
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 12
Server version: 5.7.28 MySQL Community Server (GPL)
Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.