ubuntu安裝mysql後無法遠端連線解決方案

2021-07-02 07:51:26 字數 966 閱讀 2941

1、修改mysql配置檔案my.cnf,修改紅色部分(原為127.0.0.1)

vi /etc/mysql/my.cnf

bind-address            =

0.0.0.0

2、授權命令:

grant all privileges on *.* to 

'myuser'@'%'

identified by 'mypassword' with grant option;

通過以上步驟即可遠端訪問

檢視mysql資料庫user表,會看到多了一條記錄

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

網上有搜到以下方法,大概差不多

1。改表法。

請使用mysql管理工具,如:sqlyog enterprise

可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦使用mysql管理工具登入mysql後,更改 "mysql" 資料庫裡的 "user" 表裡的 "host" 項,從"localhost"改稱"%"

2. 授權法。

a:你想mysql賬戶myuser使用密碼mypassword從任何主機連線到mysql伺服器的話,那就在mysql命令列下輸入:

grant all privileges on *.* to 'myuser'@'%'

identified by 'mypassword' with grant option;

如果你想允許想mysql賬戶myuser從ip為192.168.1.3的主機連線到mysql伺服器,並使用mypassword作為密碼,那就在mysql命令列下輸入:

grant all privileges on *.* to 'myuser'@'192.168.1.3'

identified by 'mypassword' with grant option;

Ubuntu無值守安裝mysql

2.使用dpkg preconfig x.deb預載入安裝包.3.使用debconf show 顯示安裝包需要填入的選項內容.4.定義selection檔案,其格式為 例如 root linux202 tmp cat mysql passwd debconf mysql server root pa...

樹莓派安裝Ubuntu系統後無顯示解決方案

大家的樹莓派安裝ubuntu系統後是否會出現顯示屏無顯示的情況?那麼,請大家在電腦中開啟這個tf卡,找到config.txt 大概是這個名字,在一堆檔案的中間 加入 pi4加入 kernel uboot rpi 4 32b.bin max framebuffers 2 device tree add...

mysql解除安裝後重新安裝無響應

說明 解除安裝mysql5.5 32 位 重新安裝時在最後一步第一項就無響應,按照網上說的,登錄檔中mysql資訊刪除,安裝的data檔案也刪除,重啟電腦安裝時,還是無響應.2.預設在c盤,可自行修改,安裝後再安裝目錄找到 my default.ini 修改內容如下 port 3306 mysql ...