Monster
Monster

Reputation: 189

how to fix mysql installation errors

i'm trying to install mySQL using mysql-installer-web-community-8.0.15.0 but it stops in this stage (see image bellow)

![My_SQL Eroor]https://ibb.co/0p72Xjf

When i click on show details this is what i have :

1: Download of package 'MySQL Server 8.0.15' failed with message No valid download found for product MySQL Server 8.0.15

2: Download of package 'MySQL Workbench 8.0.15' failed with message No valid download found for product MySQL Workbench 8.0.15

3: Download of package 'MySQL for Visual Studio 1.2.8' failed with message No valid download found for product MySQL for Visual Studio 1.2.8

4: Download of package 'MySQL Shell 8.0.15' failed with message No valid download found for product MySQL Shell 8.0.15

5: Download of package 'MySQL Router 8.0.15' failed with message No valid download found for product MySQL Router 8.0.15

6: Download of package 'Connector/ODBC 8.0.15' failed with message No valid download found for product Connector/ODBC 8.0.15

7: Download of package 'Connector/C++ 8.0.15' failed with message No valid download found for product Connector/C++ 8.0.15

8: Download of package 'Connector/J 8.0.15' failed with message No valid download found for product Connector/J 8.0.15

9: Download of package 'Connector/NET 8.0.15' failed with message No valid download found for product Connector/NET 8.0.15

10: Download of package 'Connector/Python (3.7) 8.0.15' failed with message No valid download found for product Connector/Python (3.7) 8.0.15

11: Download of package 'MySQL Documentation 8.0.15' failed with message No valid download found for product MySQL Documentation 8.0.15

12: Download of package 'Samples and Examples 8.0.15' failed with message No valid download found for product Samples and Examples 8.0.15

Upvotes: 5

Views: 13523

Answers (9)

countzero
countzero

Reputation: 51

According to the documents 2.3 Installing MySQL on Microsoft Windows:

Note

MySQL 8.4 Server requires the Microsoft Visual C++ 2019 Redistributable Package to run on Windows platforms. Users should make sure the package has been installed on the system before installing the server.

One can download the drivers here: Microsoft Visual C++ Redistributable latest supported downloads.

This got rid of the "download error" for me.

Upvotes: 0

a.sh
a.sh

Reputation: 1

The problem may be that since there are two installer options displayed on the MySQL website, you might have downloaded the smaller package which usually gives these errors. Try the other installer that will be on that same page and let me know if it helps.

Upvotes: 0

yhbaran
yhbaran

Reputation: 31

I got same error. When I changed my internet connection(I connected another wifi network) the problem was solved. I think your problem was in proxy settings.

Upvotes: 2

Nzoputachi Emmanuel
Nzoputachi Emmanuel

Reputation: 1

I had same issue. I tried out two other versions of the MySQL server till I found one that successfully downloaded

Upvotes: 0

Master
Master

Reputation: 11

Re-download the latest installer run it, fixes the problem

Upvotes: 0

dsnoob27
dsnoob27

Reputation: 81

I installed it in 2022, encountered the same problem, so I updated its catalog and then installed the workbench again, it will automatically update the required prerequisites such as ms visuals c++ and others and the installer will work fine.

Upvotes: 1

S. Hesam
S. Hesam

Reputation: 6743

I had the same issue before; I upgraded my installer, then tried installing MySQL, and there wasn't any error.

Upvotes: 0

Mohit Kanwar
Mohit Kanwar

Reputation: 3050

Since Proxy was not allowing my installer to connect to the Internet, I used the installer having bigger size. This installer, downloads everything with it, and does not depend upon internet later on. Just check the size on the site itself.

Upvotes: 0

Somebody
Somebody

Reputation: 733

Some firewalls blocks the installer connection such as Kaspersky, try to temporary disable it.

Upvotes: 1

Related Questions