Quantcast
Channel: MySQL Forums - MySQL Installer for Windows
Viewing all 1430 articles
Browse latest View live

MySQLinstallerConsole issue (no replies)

$
0
0
Trying to silently install 8.0.21 server.
For the line
default_authentication_plugin=mysql_native_password
Get message mysql_native_password is not a proper value for type DefaultAuthenticationPlugin

Not sure what the installer is looking for there.

Thanks

Community installer upgrade fails security check (no replies)

$
0
0
Hello,
Looking for updates on Community Edition on Windows 10, I launched the installer, then was informed that there was a mandatory update to the installer and when attempting to update the installer, received the message:

MySQL Installer for Windows:
Update download failed security check

Subsequently, no way to proceed with any update.
Checked it on at least 3 different pc's with no more luck.

FWIW

Cheers

Philippe

How can I make MySQL Workbench look nice on mysql? (no replies)

$
0
0
I have to use MySQL Workbench for a course but it's just kind of ugly.

First, it's very low resolution. I think Win10 installed the 32 bit version of Workbench when I installed MySQL. Either way, it looks very low res and pixely. Any way to make it match my display's resolution so it won’t be as blurry? MySQL installed a dozen or so things, will I have to uninstall all of them then find a 64 bit version? Or is the problem unrelated to that?

Second, the themes are all pretty outdated. Is there a way to import themes and find one I like?

Finally, is there a guide for managing all of the windows/tabs? I'm on a small laptop and only really need the the part with the SQL code, the results, and maybe the console.



Any suggestions would be very much appreciated! I've been spoiled with VSCode and don't want to have to look at this for the rest of the semester lol on mysql

Move Datadir on different other drive C: (1 reply)

$
0
0
Hello ,

I'm a french guy sorry for my language .

I install Mysql 8.0.19 on my Windows Server 2012

and I want move datadir on different drive of system

my other letter is D:

Thank's for your help

MY MYSQL SERVER IS SWAPPING FROM TIME TO TIME? (no replies)

$
0
0
hello, guys I am Using MY MYSQL SERVER IS SWAPPING FROM TIME TO TIME. THIS GIVES HICK-UPS IN MYSQL. HOW CAN I AVOID THIS?
Thanks & regards
https://akaimetal.com/

Unable to install MySQL on Windows 10 (no replies)

$
0
0
Hey Guys,
I am installing MySQL on a Windows 10 PC for my company http://manibhadrafittings.com/ for office work. I downloaded the installer package and followed those steps

Went to https://dev.mysql.com/downloads/windows/
clicked on "MySQL Installer"
Scrolled to Generally Available(GA) Releases section
Clicked on "Windows (x86, 32-bit), MSI Installer" (mysql-installer-community-5.7.21.0.msi) and it started the download.
Once the download was complete, I double clicked on the installer and it gave a usual pop-up for any installation like,"Do you want this app to make changes to your device?" after clicking on "yes" for the answer to this question, it shows "Please wait while Windows configures MySQL-Installer-community" And then it keeps showing this installation progress bar for a very long time. Like more than 7-8 hours and the installation never completes.

Anyone has any suggestion on this or did anyone face this kind of issue before? If so, is there a fix or a work around for this?

Recommend me free SEO Extension to be used? (no replies)

$
0
0
Hello Guys,

Due to the current pandemic situation across the globe, I am working from home. I have started with a new website startube&fittings Wanted to Start SEO for my website so that people can reach my website. And the audience will be able to know about the product. but I am looking to install all basic and free extensions

a) I install JCH optimize to optimize CSS files,
b) Not sure what is the best and free extension to use to optimize images, please recommend
c) please recommend other free extensions that needed to be used for SEO

How can i manage MySQL Database Service (MDS) with Python (no replies)

$
0
0
Hello Everyone,

Now, I'm using the MySQL database. I want to manage MySQL Database service with Python as my company Nitech Stainless Inc wants me to do this is it good to do and if yes, then please let me know to do it.

Company: https://www.nitechstainless.com/index.php

Thanks in advance

How can I find MySQL system information? (no replies)

$
0
0
Linux # uname -a # cat /etc/SuSE-release # cat /proc/version # lsb_release -a.
MySQL libraries # ldconfig -p | grep -i mysql.
MySQL client # mysql --version.
MySQL server mysql> STATUS; mysql> SELECT VERSION(); mysql> SHOW VARIABLES LIKE 'version%'; # mysqladmin version -p.
MySQL Table versions.
I want to find a problem related to it for my website www.inoxsteelindia.net

How To Monitor MySQL With dim_STAT? (no replies)

$
0
0
Hello Everyone,

Please let me know how can I monitor MySQL with dim_STAT. As I am not very much aware of this. I want to monitor MYSQL with Divya Darshan Metallica.

https://www.pipefitting.in/index.php

Thanks in Advance

HOW TO FIND MYSQL SYSTEM INFORMATION? (no replies)

$
0
0
Linux # uname -a # cat /etc/SuSE-release # cat /proc/version # lsb_release -a.
MySQL libraries # ldconfig -p | grep -i mysql.
MySQL client # mysql --version.
MySQL server mysql> STATUS; mysql> SELECT VERSION(); mysql> SHOW VARIABLES LIKE 'version%'; # mysqladmin version -p.
MySQL Table versions.
I want to find a problem related to it for my website www.girishmetalindia.com

want Help with mysql download (no replies)

$
0
0
Hello Guys, Due to the current pandemic situation across the globe, I am working from home. currently, I am working with Kanakmetal so for that, Depending on the installer version, it seems you need visual c++ redistributable 2015, 2017, or 2019. I think it's a documentation/UI bug---the error message needs to be more informative, consider reporting it to b ugs.mysql.com/

Error 1242 Subquery returns more than 1 row .....But...there is no subquery? (no replies)

$
0
0
Hello There,

I have been using MySQL forever and a day...and I have never run into this issue before...I believe it is a table issue, but cannot seem to figure out why it is happening...so I have a very simple insert...

insert into reg_swap_history (`ca_id`, `imaw_num`, `phone_id`, `Remarks`, `switch_date`, `switch_by`) VALUES ('161111193', '56754000180690', '72', '56754000180690 is no longer valid', '2020-08-04', 'admin');

it errors out with a 1242 Subquery returns more than one 1 row...but the weird thing is there is no subquery??? it only seems to be happening to this one table. If I Insert a record via the GUI window display it displays the query it is about to run (I copied that) and then hit apply...goes in fine. I try to run the query the system showed before the system inserted the record:

INSERT INTO `registration`.`reg_swap_history` (`ca_id`, `imaw_num`, `phone_id`, `Remarks`, `switch_date`, `switch_by`) VALUES ('161111193', '56754000180690', '72', '56754000180690 is no longer valid', '2020-08-04', 'admin');

and it again gives me the same subquery error...using the same statement that it itself used...I dont think it is MySQL workbench, as this is affecting my php sql query as well....it looks to be the table itself.

Has anyone ever seen anything like this before? any help would be greatly appreciated.
https://amtexenterprises.net/
Thanks:

Chinese path is not supported in version 8.0.19 (2 replies)

$
0
0
If the folder where mysqld.exe is located has a Chinese path, the following error will occur:


2020-04-15T08:25:20.353851Z 0 [System] [MY-010116] [Server] D:\ (mysqld 8.0.19) starting as process 20040
2020-04-15T08:25:20.354011Z 0 [ERROR] [MY-010338] [Server] Can't find error-message file 'D:\share\errmsg.sys'. Check error-message file location and 'lc-messages-dir' configuration directive.
2020-04-15T08:25:20.356652Z 0 [Warning] [MY-010091] [Server] Can't create test file D:\data\mysqld_tmp_file_case_insensitive_test.lower-test
2020-04-15T08:25:20.356713Z 0 [Warning] [MY-010091] [Server] Can't create test file D:\data\mysqld_tmp_file_case_insensitive_test.lower-test
2020-04-15T08:25:20.356991Z 0 [ERROR] [MY-013276] [Server] Failed to set datadir to 'D:\data\' (OS errno: 2 - No such file or directory)
2020-04-15T08:25:20.407125Z 0 [ERROR] [MY-010119] [Server] Aborting
2020-04-15T08:25:20.407471Z 0 [System] [MY-010910] [Server] D:\: Shutdown complete (mysqld 8.0.19) MySQL Community Server - GPL.

No compatible servers were found, you would need to cancel wizard and install one. (6 replies)

$
0
0
I am currently facing a challenge during installation.

Firstly, i didnt get x64 for the windows msi installer. I had to download x32 to install. i get this error.

I tried reading a solution online, in which it was suggested I install visual C++. i did but still the same.

Any suggestion please.

Thank you

install package (1 reply)

$
0
0
Dear All users.

I had tried to download and install the MySQL Community Server 8.0.19 to my computer.

Along the installation process, I found that the installation does not appear of the server pack, and only had notifier, for excel, router, connector/J and net.

My computer is using window 7, 32 bits

hope anyone could help and give advice, thank you

connector/net 8.0.19.0 install fail (1 reply)

$
0
0
updating my mysql installation, connector/net 8.0.19.0 install failed without any explantion.
what should I do to gain access to my data again?

Upgrade Mysql 5.6 upgrade 5.7 (2 replies)

$
0
0
Hi all

I have been task with upgrading a mysql instance on a windows Server 2016.
The server has a copy of Mysql 5.7.

But I must now upgrade the Mysql 5.6 version to 5.7 but using the existing 5.6 instance.
In the end there will be two instances of 5.7 running.

How would can I go about doing this safely.

The 5.7 Installer does see 5.6 and therefore unable to upgrade using the installer.

I believe I will have to shutdown 5.6 and replace the Binary manually.



Does anyone have an idea on how to approach this?

Regards

Config Type cannot be changed (no replies)

$
0
0
Hi,
I installed mysql server 8.0.23 on OS Windows Server 2019 on new HP Microserver GEN10+ using latest mysql installer for windows and chose Config Type = Server Computer.
It worked.
But now I want to switch config type from Server Computer to Dedicated Computer.
I can pass through all the screens, do not get any errors, but when I double- check after finishing, I see the config type gone to Development Computer (not even unchanged).
I tried several times with and without restarts of the server hardware and mysql server software.
Result is always the same, config type stays Development Computer.
I setup a machine like this maybe once a year, it is not of my daily business, so also beginner mistakes might have happened.
Any ideas?
Thank you!

Instalador No Muestra Productos Disponibles (1 reply)

$
0
0
He intentado instala mysql en mi portátil personal con Windows 10 y todos inicia bien, pero cuando selecciono instalación manual, me lleva a Seleccione productos. Y no muestra nada.
Inactive el antivirus. Cambie de red wifi. Probé con la versión 21,22,23 y todas lo mismo.

Agradesco cualquier colaboración.
Viewing all 1430 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>