Problemas ao instalar o servidor MySQL no Ubuntu 13.04

-1

Atualmente estou tentando instalar um servidor MySQL na minha máquina Ubuntu 13.04. O problema é que, quando tento instalá-lo, recebo mensagens de erro indicando que nem todos os pacotes podem ser baixados. Quando eu executo sudo apt-get install mysql-server , e depois de ficar um tempo lendo os cabeçalhos, o console lê o seguinte:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  libaio1 libdbd-mysql-perl libdbi-perl libhtml-template-perl libmysqlclient18 libnet-daemon-perl libplrpc-perl mysql-client-5.5 mysql-common mysql-server-5.5 mysql-server-core-5.5
Suggested packages:
  libipc-sharedcache-perl tinyca mailx
The following NEW packages will be installed:
  libaio1 libdbd-mysql-perl libdbi-perl libhtml-template-perl libmysqlclient18 libnet-daemon-perl libplrpc-perl mysql-client-5.5 mysql-common mysql-server mysql-server-5.5 mysql-server-core-5.5
0 upgraded, 12 newly installed, 0 to remove and 3 not upgraded.
Need to get 8,077 kB/24.5 MB of archives.
After this operation, 84.9 MB of additional disk space will be used.
Do you want to continue [Y/n]? y
Err http://us.archive.ubuntu.com/ubuntu/ raring-updates/main mysql-client-5.5 i386 5.5.32-0ubuntu0.13.04.1
  Connection failed [IP: 91.189.91.13 80]
Err http://security.ubuntu.com/ubuntu/ raring-security/main mysql-client-5.5 i386 5.5.32-0ubuntu0.13.04.1
  Connection failed [IP: 91.189.92.190 80]
Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/m/mysql-5.5/mysql-client-5.5_5.5.32-0ubuntu0.13.04.1_i386.deb  Connection failed [IP: 91.189.92.190 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?

Eu tentei a correção sugerida ou executei o apt-get update e, por exemplo, verifiquei se não tinha nenhuma conexão bloqueada, reiniciei, desinstalei, reinstalei, etc., tudo sem sucesso. Eu tenho procurado na web todos os dias por soluções que eu ainda não tentei, mas a maioria das pessoas com esse problema está executando uma versão mais antiga do Ubuntu. (By the way, eu tentei a solução aqui ) Sugestões?

    
por user197627 01.10.2013 / 05:58

1 resposta

0

Tente usar o comando sudo apt-get autoclean && sudo apt-get update && sudo apt-get upgrade

Em seguida, experimente sudo apt-get install -f e veja se você pode instalar mysql-server .

    
por Cody 01.10.2013 / 07:12