提示:文章写完后,目录可以自动生成,怎样生成可参考右边的帮助文档
一、首次登录
进入 mysql 数据库:
- [root@localhost opt]# mysql -uroot -p
复制代码 检察 mysql 的默认的数据库:
二、设置远程登录
1、确认网络
2、关闭防火墙或开放端口
3、Linux 下修改配置
在 Linux 系统 MySQL 下测试
进入 mysql 数据库:
- [root@localhost ~]# mysql -uroot -hlocalhost -p
- Enter password:
- Welcome to the MySQL monitor. Commands end with ; or \g.
- Your MySQL connection id is 14
- Server version: 8.0.26 MySQL Community Server - GPL
- Copyright (c) 2000, 2021, 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>
复制代码 显示数据库:
- mysql> show databases;
- +--------------------+
- | Database |
- +--------------------+
- | information_schema |
- | mysql |
- | performance_schema |
- | sys |
- +--------------------+
- 4 rows in set (0.01 sec)
- mysql>
复制代码 使用数据库:
- mysql> use mysql;
- Reading table information for completion of table and column names
- You can turn off this feature to get a quicker startup with -A
- Database changed
复制代码- mysql> select host,user from user;
- +-----------+------------------+
- | host | user |
- +-----------+------------------+
- | localhost | mysql.infoschema |
- | localhost | mysql.session |
- | localhost | mysql.sys |
- | localhost | root |
- +-----------+------------------+
- 4 rows in set (0.00 sec)
复制代码- mysql> update user set host = '%' where user='root';
- Query OK, 1 row affected (0.00 sec)
- Rows matched: 1 Changed: 1 Warnings: 0
复制代码- mysql> select host,user from user;
- +-----------+------------------+
- | host | user |
- +-----------+------------------+
- | % | root |
- | localhost | mysql.infoschema |
- | localhost | mysql.session |
- | localhost | mysql.sys |
- +-----------+------------------+
- 4 rows in set (0.00 sec)
复制代码 刷新权限:
- mysql> flush privileges;
- Query OK, 0 rows affected (0.00 sec)
复制代码 报错解决方法:
- mysql> ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'DDD_ddd123';
- Query OK, 0 rows affected (0.01 sec)
复制代码 Navicat 毗连乐成:
进入 Navicat 界面:
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |