Win10連線WSL2 Ubuntu中的MySQL

2021-10-08 20:48:00 字數 1725 閱讀 1463

$ apt update

$ apt install mysql-server

安裝完畢後重啟mysql服務

$ service mysql restart
# 修改配置檔案 /etc/mysql/mysql.conf.d/mysqld.cnf

$ vi /etc/mysql/mysql.conf.d/mysqld.cnf

# 注釋 bind-address = 127.0.0.1

# 登入mysql

$ mysql -uroot -p

# 新增使用者並允許遠端訪問

mysql> grant all privileges on *.* to '使用者名稱'@'%'identified by '密碼' with grant option;

# 重新整理

mysql> flush privileges;

# 重啟mysql服務

$ service mysql restart

# 檢視wsl2 ubuntu ip位址

# 開啟cmd或powershell,輸入以下命令

# 172.19.148.248是wsl2 ubuntu的ip位址

❯ mysql -h 172.19.148.248 -u mattxu -p

enter password: *****

*welcome to the mysql monitor. commands end with ; or \g.

your mysql connection id is 7

server version: 5.7.31-0ubuntu0.18.04.1 (ubuntu)

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> show databases;

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

+| database |

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

+| information_schema |

| mysql |

| performance_schema |

| sys |

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

+4 rows in set

(0.00 sec)

win10連線共享印表機

一 在執行中輸入 共享印表機的主機ip 二 如果出現下面彈窗 1 按win鍵彈出開始選單,直接在鍵盤上按zucelue,這個時候開始選單裡會檢索到 編輯組策略 這個程式,按回車執行該程式。2 本地組策略編輯器,順著左側的策略樹,找到 計算機配置 管理模板 網路 lanman工作站 這個節點,在右側內...

Win10安裝Ubuntu子系統 WSL

關閉所有執行的程式,開啟控制面板 解除安裝程式 啟用或關閉windows功能 勾選上適用於linux的windows子系統,然後確定,完成會提示重啟電腦,確定重啟,等重啟電腦後在操作。開啟windows10應用商店,搜尋ubuntu,然後選擇版本,然後點選獲取安裝。預設第乙個是最新的系統,後面兩個是...

windows 10連線家庭ubuntu系統

首先更新系統源 sudo apt get update 開啟ssh服務 apt get install openssh server 在這裡可能會遇到附錄中2的問題。如果沒有直接繞過 vi etc ssh sshd config 新增如下命令 允許root許可權登入。重啟ssh服務 service ...