Reinstalando o servidor MySQL 8.0 no Ubuntu 22.04

Reinstalando o servidor MySQL 8.0 no Ubuntu 22.04

Eu precisava limpar uma instalação do MYSQL usando o seguinte:

sudo apt remove --purge mysql-server
sudo apt purge mysql-server
sudo apt autoremove
sudo apt autoclean
sudo apt remove dbconfig-mysql

Tudo parecia purgar ok.

Ao tentar reinstalar, recebo os seguintes erros após a listagem dos arquivos de atualização:

Setting up mysql-server-8.0 (8.0.30-0ubuntu0.22.04.1) ... 
Renaming removed key_buffer and myisam-recover options (if present) 
ERROR: Unable to start MySQL server: 
mysqld: Can't read dir of '/etc/mysql/conf.d/' (OS errno 2 - No such file or directory) 
mysqld: [ERROR] Stopped processing the 'includedir' directive in file /etc/mysql/my.cnf at l
ine 20. 
mysqld: [ERROR] Fatal error in defaults handling. Program aborted! 
Please take a look at https://wiki.debian.org/Teams/MySQL/FAQ for tips on fixing common upgr
ade issues. 
Once the problem is resolved, run apt-get --fix-broken install to retry. 
dpkg: error processing package mysql-server-8.0 (--configure): 
installed mysql-server-8.0 package post-installation script subprocess returned error exit 
status 1 
dpkg: dependency problems prevent configuration of mysql-server: 
mysql-server depends on mysql-server-8.0; however: 
 Package mysql-server-8.0 is not configured yet. 

dpkg: error processing package mysql-server (--configure): 
dependency problems - leaving unconfigured 
No apport report written because the error message indicates its a followup error from a pre
vious failure. 
             Errors were encountered while processing: 
mysql-server-8.0 
mysql-server 
E: Sub-process /usr/bin/dpkg returned an error code (1)

Eu revisei o link do wiki, sem ajuda. Eu vi um post semelhante aqui de três anos atrás, tentei o 'apt install -f' conforme recomendado, novamente sem ajuda.

Responder1

Antes de tentar remover o mysql certifique-se de que ele esteja desligado sudo systemctl stop mysqle tente emitir os comandos novamente.

depois de interromper o serviço MySQL, você pode executá-lo systemctl status mysqlpara ter certeza de que ele está desligado.

deixe-me saber se funcionou.

[outra solução]

Crie o diretório a partir da mensagem de erro.

sudo mkdir -p /etc/mysql/conf.d/

Crie um novo mysql.cnfarquivo e escreva [mysql]nele.

echo "[mysql]" | sudo tee /etc/mysql/conf.d/mysql.cnf

E reconfigure os pacotes.

sudo dpkg --configure -a

informação relacionada