【數據庫】Navicat Premium12遠程連接MySQL數據庫


00. 目錄

@

參考博客:https://blog.csdn.net/dengjin20104042056/article/details/95091506

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> 

step2: 修改權限

第一個root是用戶名,后面一個root是數據庫密鑰, %表示所有主機都可以訪問。

mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;

step3: 刷新權限

mysql> flush privileges;
Query OK, 0 rows affected (0.22 sec)

mysql> 

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> 

方法二:

step1: 修改表user

mysql> use mysql; 
mysql> update user set host = ‘%’ where user = ‘root’;

step2: 刷新權限

mysql> flush privileges;
Query OK, 0 rows affected (0.22 sec)

mysql> 

到此遠程權限開啟成功。

04. Navicat連接MySQL

step1: 新建連接,選擇MySQL

在這里插入圖片描述

step2: 填寫連接信息

在這里插入圖片描述

step3: 測試
在這里插入圖片描述

step4: 連接結果

到這一步我們基本上連接好了MySQL數據庫

軟件和破解文件下載:
鏈接:https://pan.baidu.com/s/1REong-Zcc0axvWtMXjL4pg
提取碼:3b4p


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM