sqlyog 安裝使用

2022-07-30 21:39:12 字數 974 閱讀 5561

修改 /etc/mysql/my.cnf 把 bind-address =127.0.0.1 注釋掉

然後1.設定遠端訪問

將相應使用者資料表中的host欄位改成'%';

use mysql

mysql> select host, user from user;

+-----------+------+

| host      | user |

+-----------+------+

| 127.0.0.1 | root |

| ::1       | root |

| localhost |      |

| localhost | root |

+-----------+------+

4 rows in set (0.00 sec)

可以看出沒有%這一項

mysql> update user set host='%' where user='root';

error 1062 (23000): duplicate entry '%-root' for key 'primary'

這裡報了乙個錯誤,我們不予理會。

mysql> select host, user from user;

+-----------+------+

| host      | user |

+-----------+------+

| %         | root |

| 127.0.0.1 | root |

| ::1       | root |

| localhost |      |

+-----------+------+

4 rows in set (0.00 sec)

mysql> flush privileges;

看到資料表中已經有這一項了,那麼就可以實現遠端訪問了。

SQLyog安裝與使用

2.開啟系統目錄,例如 c windows 找到unins000.exe 根據系統不同,也有可能是unins001.exe或者unins002.exe unins003.exe 是個和sqlyog一樣的紫色小魚標誌,很好找的。3.雙擊執行,提示什麼都不管,直接點 是 y 解除安裝後會導致sqlyog...

SQLyog的安裝及使用

sqlyog是業界著名的webyog公司出品的一款簡潔高效 功能強大的圖形化mysql資料庫管理工具。特點 1.基於c 和mysqlapi程式設計 2.方便快捷的資料庫同步與資料庫結構同步工具 3.易用的資料庫 資料表備份與還原功能 4.支援匯入與匯出xml html csv等多種格式的資料 5.直...

SQLyog 使用教程

mysql 資料庫操作 建立資料庫 create database testdb 建立表 create table test user id int primary key auto increment,username varchar 50 not null passward varchar 20...