windows subsystem install mysql server

前端 未结 6 1598
心在旅途
心在旅途 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:47

    I meet save issue. The reason is you have a MySQL-server installed on your native OS Win10. How to fix it:

    1. Go to Windows service, stop the MySQL service.

    2. Modify my.ini under MySQL server folder, mine is C:\Program Files\MySQL\MySQL Server 5.5

      [mysqld]
      \# The TCP/IP Port the MySQL Server will listen on
      port=3306 -> 3308 or other
      
    3. Restart your wsl instance.

    4. Reinstall the MySQL-server with root account

      apt install mysql-server
      service mysql start
      mysql_secure_installation
      

提交回复
热议问题