平台:
ubuntu
mysql版本:5.7.16
操作流程:
修改資料庫配置檔案
檢視my.cnf檔案,,
預設路徑:/etc/mysql/my.cnf
遇到過兩種情況:
①檔案中只有兩個路徑,那麼修改其中的/etc/mysql/mysql.conf.d/ 下的mysqld.cnf檔案,將bind-address = 127.0.0.1行注釋
②檔案中含有行bind-address = 127.0.0.1,直接注釋掉
重啟mysql即可。 附:
使用者許可權相關
grant privileges on database.table to username@'ip/%' identified by 'password'; //授權
revoke privileges on database.table from username@'ip/%'; //取消許可權
show grants for username; //檢視許可權
flush privileges; 重新整理資料庫使配置生效。
設定MySQL 允許外部訪問
錯誤資訊 sql error 1130 host 10.4.2.197 is not allowed to connect to this mysql server 說明所連線的使用者帳號沒有遠端連線的許可權,只能在本機 localhost 登入。需更改 mysql 資料庫裡的 user表裡的 ho...
設定mysql 5 7 外部訪問
登入 mysql uroot p使用表 use mysql檢視使用者表 select from user更新host update user set host where user root檢視網路情況 lsof i 3306 驗證遠端訪問.發現還是不行.情況如下 root cloud etc my...
設定mysql允許外部連線訪問
錯誤資訊 sql error 1130 host 192.168.1.88 is not allowed to connect to this mysql server 說明所連線的使用者帳號沒有遠端連線的許可權,只能在本機 localhost 登入。需更改 mysql 資料庫裡的 user表裡的 ...