
Navicat
小洪帽i
这个作者很懒,什么都没留下…
展开
-
超实用的Navicat 常用快捷键整理
1.打开一个新的查询窗口: Ctrl + Q2.关闭当前窗口:Ctrl + W3.运行当前窗口的SQL语句:Ctrl + R4.运行选中的SQL语句:Ctrl + Shift + R5.注释选中SQL语句:Ctrl + /6.取消注释SQL:Ctrl + Shift + /7.选中当前行SQL:三击鼠标8.复制一行内容到下一行:Ctrl + D9.删除当前行:Ctrl + L10.在表内容显示页面切换到表设计页面:Ctrl + D11.在表设计页面,快速切换到表内容显转载 2021-10-21 20:08:49 · 4995 阅读 · 0 评论 -
mysql 解决忘记密码
首先,打开mysql的配置文件:/etc/my.cnf在 [mysqld] 下面添加 skip-grant-tables;然后 :wq 保存退出连接mysql服务,再更改密码[root@localhost mysql]# mysql -uroot# 刷新mysqlmysql> flush privileges;# 修改密码mysql> alter user "root"@"localhost" identified by "root";# 刷新mysqlmys.原创 2021-08-09 10:48:47 · 232 阅读 · 0 评论 -
mysql Navicat连接mysql报错 1130-host ‘xxx.xxx.xxx.xxx‘ is not allowed to connect to this MySQL server
意思是你当前的用户没有连接MySQL的权限在 Linux 里面链接数据库修改当前账号的权限update mysql.user set user.host='%' where user.user='root';flush privileges;然后就可以连接MySQL了。如果继续报错:1251 -Client does not support authentication protocol requested by server consider upgrading MYSQ..原创 2021-08-03 11:46:59 · 132 阅读 · 0 评论 -
Navicat与mycat连接mysql问题1251 -Client does not support authentication protocol requested by server.....
Navicat 与 mycat 连接mysql问题 1251 -Client does not support authentication protocol requested by server consider upgrading MYSQL client原因是mysql8.0新特性的问题,是由 caching_sha2_password 加密规则引起的,而mycat与老版本的navicat for mysql 的加密规则是 mysql_native_password解决的办法:使用新版的N原创 2021-07-14 15:49:13 · 396 阅读 · 0 评论 -
Navicat连接Mysql报错2003 - Can‘t connect to MYSQL server on ‘xxx.xxx.xxx.xxx‘ ( 10038 )
问题:需关闭防火墙一、查看防火墙状态systemctl status firewalldservice iptables status二、暂时关闭防火墙systemctl stop firewalldservice iptables stop三、永久关闭防火墙systemctl disable firewalldchkconfig iptables off四、重启防火墙systemctl enable firewalldservice iptables restart五、原创 2021-07-13 18:30:29 · 595 阅读 · 0 评论