1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Windows】WSL上のLinuxにMariaDB(mysql)をインストール

Posted at

環境 windows10 WSL2
Ubuntu 20.04 LTS
↓の記事の環境
https://qiita.com/exe2zip/items/c665bc983e3b06ad88fc

MariaDBのインストールを行う

exe2zip@LAPTOP-xxx:~$ sudo apt upadate
exe2zip@LAPTOP-xxx:~$ sudo apt install mariadb-server

image.png

インストールを終えると,
サービスにmysqlがある
image.png

exe2zip@LAPTOP-xxx:~$ service mysql start

を実行し,mysqlのサービスを起動
サービスが起動した状態で

exe2zip@LAPTOP-xxx:~$ sudo mysql

image.png

起動できた.

メモ

ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)

image.png
このエラーが出る時は,サービスをスタートしていないと思われる.

また,サービスの起動に失敗したときその理由として,
WSLとは別でWindows上でデータベースを起動していると,競合するときがあった(と思われる)
ので,タスクマネージャの詳細やサービスから止めておくとよいかもしれない.

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?