windows subsystem install mysql server

前端 未结 6 1575
心在旅途
心在旅途 2021-02-19 10:30

installing mysql-server on ubuntu 18.04 subsystem windows 10.

Cannot open /proc/net/unix: No such file or directory
Cannot stat file /proc/1/fd/5: Operation not          


        
6条回答
  •  醉话见心
    2021-02-19 10:43

    I can't install mysql on wsl either (mysql 5.7.30, ubuntu 18.04, win10 1909), so there is workaround here. Install and run mysql on windows, then connect it from ubuntu bash by using:

    mysql -u root -p --host=127.0.0.1 --port=3306 --protocol=TCP
    

    Also need to config Database in your porject settings. Don't use localhost, and port is 3306 on my pc, might be different from yours. Hope they can fix it on wsl2.

提交回复
热议问题