LoginSignup
6
7

More than 3 years have passed since last update.

Bash on Ubuntu on Windows で MySQL のインストールに失敗した時のメモ

Last updated at Posted at 2017-06-23

手順

##### インストール #####
sudo dpkg -i mysql-apt-config_0.8.6-1_all.deb
# MySQL Server と mysql-5.7 を選択
sudo apt update && upgrade
sudo apt install mysql-server
# root password 入力
##### エラー発生 #####
mysql -u root -p
Enter password:****
ERROR 2002 (HY000): Can't connect to local
MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)

##### 対処手順 #####
cd /var/run/
sudo mkdir mysqld
sudo touch mysqld.sock

##### エラー #####
mysql -u root -p
Enter password:****
ERROR 2002 (HY000): Can't connect to local
MySQL server through socket '/var/run/mysqld/mysqld.sock' (13)
6
7
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
6
7