windows - MySQL Silent Install error: More than one package matches 'server;5.7.18' and the silent flag was given -
i'm attempting write batch script install instance of mysql server onto clean windows virtual machine. while i'm attempting command line instructions, powershell ok solution also.
the problem i'm having using mysqlinstallerconsole.exe
can't figure out parameters pass in order server installed.
batch file:
@echo off echo installing mysql server. please wait... msiexec /i "mysql-installer-community-5.7.19.0.msi" /qn echo configurating mysql server... cd "c:\program files (x86)\mysql\mysql installer windows" mysqlinstallerconsole.exe install server;5.7.19.0:*:port=3306;serverid=2:type=developer;username=root;password=root;role=dbmanager echo installation pause
output:
c:\program files (x86)\mysql\mysql installer windows>mysqlinstallerconsole.exe install server;5.7.18:*:port=3306;serverid=2:type=developer;username=root;password=root;role=dbmanager -silent =================== start initialization =================== mysql installer running in commercial mode attempting update manifest. initializing product requirements loading product catalog checking product catalog snippets checking product packages in bundle categorizing product catalog finding installed packages. product catalog last updated @ 7/25/2017 11:33:18 =================== end initialization =================== more 1 package matches 'server;5.7.18' , silent flag given. skipping. unable find products match server;5.7.18
Comments
Post a Comment