00. 目錄
01. 環境介紹
Navicat版本: Navicat Premium12
數據庫版本: MySQL5.7和Oracle 11g
02. Navicat安裝
請參考詳細安裝教程:【Tools】Navicat Premium12安裝和破解教程
03. MySQL開啟遠程登錄權限
方法一:
step1: 登錄MySQL數據庫
[root@localhost ~]# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 78
Server version: 5.7.23 MySQL Community Server (GPL)
Copyright (c) 2000, 2018, 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>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
step2: 修改權限
第一個root是用戶名,后面一個root是數據庫密鑰, %表示所有主機都可以訪問。
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;
- 1
step3: 刷新權限
mysql> flush privileges;
Query OK, 0 rows affected (0.22 sec)
mysql>
- 1
- 2
- 3
- 4
step4: 查看權限
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
sDatabase changed
mysql> select user, host from user;
+---------------+-----------+
| user | host |
+---------------+-----------+
| root | % |
| mysql.session | localhost |
| mysql.sys | localhost |
| root | localhost |
+---------------+-----------+
4 rows in set (0.09 sec)
mysql>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
方法二:
step1: 修改表user
mysql> use mysql;
mysql> update user set host = ‘%’ where user = ‘root’;
- 1
- 2
step2: 刷新權限
mysql> flush privileges;
Query OK, 0 rows affected (0.22 sec)
mysql>
- 1
- 2
- 3
- 4
到此遠程權限開啟成功。
04. Navicat連接MySQL
step1: 新建連接,選擇MySQL
step2: 填寫連接信息
step3: 測試
step4: 連接結果
到這一步我們基本上連接好了MySQL數據庫
軟件和破解文件下載:
鏈接:https://pan.baidu.com/s/1REong-Zcc0axvWtMXjL4pg 提取碼:3b4p
下載方式二:https://download.csdn.net/download/dengjin20104042056/11297032
</div>
<link href="https://csdnimg.cn/release/phoenix/mdeditor/markdown_views-e44c3c0e64.css" rel="stylesheet">
</div>