Я пытаюсь переустановить mysql -сервер на моем wsl Ubuntu 18.04 .
(у меня MySQL сервер на Windows 10, но на порту 3307. IDK, если это имеет значение, но на всякий случай!)
Я не смог sudo service mysql start
или sudo /etc/init.d/mysql start
, и он вернул
No directory, logging in with HOME=/
mkdir: cannot create directory ‘//.cache’: Permission denied
-su: 19: /etc/profile.d/wsl-integration.sh: cannot create //.cache/wslu/integration: Directory nonexistent [Failed]
Я погуглил о переустановке mysql в Ubuntu и выполнил следующую процедуру:
- https://github.com/microsoft/WSL/issues/1761
sudo su
apt-get remove --purge 'mysql*'
apt-get autoremove
apt-get autoclean
rm -f /etc/mysql /var/lib/mysql
apt-get install mysql-server
Но, пытаясь apt-get install mysql-server
, я получил ошибку ниже.
invoke-rc.d: could not determine current runlevel
* Stopping MySQL database server mysqld [ OK ]
update-alternatives: using /etc/mysql/mysql.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode
Renaming removed key_buffer and myisam-recover options (if present)
Cannot open /proc/net/unix: No such file or directory
Cannot stat file /proc/1/fd/5: Operation not permitted
Cannot stat file /proc/1/fd/10: Operation not permitted
Cannot stat file /proc/1/fd/6: Operation not permitted
Cannot stat file /proc/5/fd/7: Operation not permitted
Cannot stat file /proc/5/fd/10: Operation not permitted
Cannot stat file /proc/5/fd/5: Operation not permitted
Cannot stat file /proc/843/fd/7: Operation not permitted
Cannot stat file /proc/843/fd/10: Operation not permitted
Cannot stat file /proc/843/fd/5: Operation not permitted
dpkg: error processing package mysql-server-5.7 (--configure):
installed mysql-server-5.7 package post-installation script subprocess returned error exit status 1
dpkg: dependency problems prevent configuration of mysql-server:
mysql-server depends on mysql-server-5.7; however:
Package mysql-server-5.7 is not configured yet.
Я гуглил проблемы Cannot open /proc/net/unix: No such file or directory
и invoke-rc.d: could not determine current runlevel
, но не смог найти правильного решения этой проблемы.
Я очень признателен, если вы дадите мне несколько советов по этому поводу. Спасибо!