Bug #73286 | Silent install of mysql-installer-community-5.6.19.0 only installs the installer | ||
---|---|---|---|
Submitted: | 14 Jul 2014 2:48 | Modified: | 14 Jul 2014 11:35 |
Reporter: | Nicholas Ramirez | Email Updates: | |
Status: | Open | Impact on me: | |
Category: | MySQL Server: Installing | Severity: | S4 (Feature request) |
Version: | 5.6.19.0 | OS: | Windows |
Assigned to: | CPU Architecture: | Any | |
Tags: | bootstrapper, msi, quiet install, unattended install |
[14 Jul 2014 2:48]
Nicholas Ramirez
[14 Jul 2014 3:16]
Nicholas Ramirez
Changing this to a bug instead of feature request because the docs at http://dev.mysql.com/doc/refman/5.5/en/windows-installer-msi-quiet.html say that a quiet install should already work.
[14 Jul 2014 9:20]
Peter Laursen
I thin teh page at http://dev.mysql.com/doc/refman/5.5/en/windows-installer-msi-quiet.html does not refer the "MySQL Installer" (for multiple products) but the .msi installer for the server alone. Such ('server alone') .msi is available for 5.1 and 5.5 - but not 5.6 and 5.7 - servers.
[14 Jul 2014 9:24]
Peter Laursen
Check this page too: http://dev.mysql.com/doc/refman/5.6/en/windows-installer-msi-quiet.html "This page has moved or been replaced .." Your link is to MySQL 5.5 documentation. I don't find any similar statement for MySQL 5.6. -- Peter -- not a MySQL/Oracle person
[14 Jul 2014 11:35]
Nicholas Ramirez
You're right, changing it back to a feature request to have the installer have the ability to do a quiet, unattended install.
[13 Feb 2015 0:19]
MySQL Verification Team
http://bugs.mysql.com/bug.php?id=75878 marked as duplicate of this one.
[18 Feb 2015 14:37]
Michael B
If you only wish to install the server you could use this workaround: 1. Download 7Zip or any other program that is able to open MSI packages 2. Download the full msi (boostrap) installer. 3. Rightclick on the (bootstrap) installer -> open with 7Zip 4. Extract the file server_5623_winx64 for x64 and server_5623_win32 for x86. 5. Rename the file to xxxx.msi (this is the install file as in previous versions). 7. install with the command msiexec /q /i server_5623_winx64.msi However afterwards we always configured our servers with the MysqlInstanceConfig.exe in older versions of Mysql. It would generate an ini and create a windows service. This does not seem to be present anymore so from there on out it seems we have to: - use the noinstall procedure for installing the service, manually create a .ini, etc (https://dev.mysql.com/doc/refman/5.6/en/windows-install-archive.html). or -use the mysql installer console to configure the service. (http://dev.mysql.com/doc/refman/5.6/en/MySQLInstallerConsole.html). The console also seems to allow mysql to be installed silent this way but will probably require an internet connection. we are currently exploring this option. Hope this helps.