it looks like he reason for behavior is that mysql_install_db.exe failed, because when it ran mysqld in bootstrap mode, mysqld died it wrote something about lc-message-dir being used and that this is deprecared, but since installation works everywhere else, it should not be reason for sudden mysqld death.
Now we can:
1) Trying to localize the error. I put together a package that is a bit more verbose, and should include the output of mysqld.exe and the exact command line , when installer runs in logging mode
Would you like to run it, as before from the command line with msiexec ? That might help actually.
The package is on my SkyDrive here https://skydrive.live.com/#cid=FF0C950417B4F8A4&id=FF0C950417B4F8A4%21110
2) You can install binaries, but deselct "Database Instance" in MSI Feature tree. The result us that after the installation there won't be a running database, only binaries.
You can create an instanse with mysql_install_db.exe
mysql_install_db.exe --datadir=<dir> --password=<password> --service=<service>, as described in the MariaDB documentation https://kb.askmonty.org/en/mysql_install_dbexe/
There is no guarantee that it does not die though, because during MSI installation the same exact command died. However command line is much nicer to get the error reproduced than MSI, so we can look further.
Please indicate if you would like 1) or 2).
thanks,
Wlad
Hi Wlad,
Is it supposed to work on Windows 8 32-bit?