【Navicat 实现 mysql 的远程毗连】

打印 上一主题 下一主题

主题 966|帖子 966|积分 2898

提示:文章写完后,目录可以自动生成,怎样生成可参考右边的帮助文档
  
  
一、首次登录

进入 mysql 数据库:
  1. [root@localhost opt]# mysql -uroot -p
复制代码
检察 mysql 的默认的数据库:

二、设置远程登录

1、确认网络



2、关闭防火墙或开放端口



3、Linux 下修改配置

在 Linux 系统 MySQL 下测试

进入 mysql 数据库:
  1. [root@localhost ~]# mysql -uroot -hlocalhost -p
  2. Enter password:
  3. Welcome to the MySQL monitor.  Commands end with ; or \g.
  4. Your MySQL connection id is 14
  5. Server version: 8.0.26 MySQL Community Server - GPL
  6. Copyright (c) 2000, 2021, Oracle and/or its affiliates.
  7. Oracle is a registered trademark of Oracle Corporation and/or its
  8. affiliates. Other names may be trademarks of their respective
  9. owners.
  10. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  11. mysql>
复制代码
显示数据库:
  1. mysql> show databases;
  2. +--------------------+
  3. | Database           |
  4. +--------------------+
  5. | information_schema |
  6. | mysql              |
  7. | performance_schema |
  8. | sys                |
  9. +--------------------+
  10. 4 rows in set (0.01 sec)
  11. mysql>
复制代码
使用数据库:
  1. mysql> use mysql;
  2. Reading table information for completion of table and column names
  3. You can turn off this feature to get a quicker startup with -A
  4. Database changed
复制代码
  1. mysql> select host,user from user;
  2. +-----------+------------------+
  3. | host      | user             |
  4. +-----------+------------------+
  5. | localhost | mysql.infoschema |
  6. | localhost | mysql.session    |
  7. | localhost | mysql.sys        |
  8. | localhost | root             |
  9. +-----------+------------------+
  10. 4 rows in set (0.00 sec)
复制代码
  1. mysql> update user set host = '%' where user='root';
  2. Query OK, 1 row affected (0.00 sec)
  3. Rows matched: 1  Changed: 1  Warnings: 0
复制代码
  1. mysql>  select host,user from user;
  2. +-----------+------------------+
  3. | host      | user             |
  4. +-----------+------------------+
  5. | %         | root             |
  6. | localhost | mysql.infoschema |
  7. | localhost | mysql.session    |
  8. | localhost | mysql.sys        |
  9. +-----------+------------------+
  10. 4 rows in set (0.00 sec)
复制代码
刷新权限:
  1. mysql> flush privileges;
  2. Query OK, 0 rows affected (0.00 sec)
复制代码
报错解决方法:
  1. mysql> ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password  BY 'DDD_ddd123';
  2. Query OK, 0 rows affected (0.01 sec)
复制代码
Navicat 毗连乐成:
进入 Navicat 界面:


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

天津储鑫盛钢材现货供应商

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表