在 Windows 上运行 MySQL 或 MariaDB 服务器的最小文件 - (Portable MySQL/MariaDB)
问题:在 Windows 上运行 MySQL 或 MariaDB 服务器的最小文件 - (Portable MySQL/MariaDB) 我正在寻找 MariaDB 或 MySQL 运行所需的最少文件,而无需像便携式服务器那样安装它。我更喜欢 MariaDB 而不是 MySQL。我想将它嵌入到我用 Delphi 编写的软件中。我的软件将能够根据需要启动和停止服务器。我用谷歌搜索但没有成功。 我读过
问题:在 Windows 上运行 MySQL 或 MariaDB 服务器的最小文件 - (Portable MySQL/MariaDB)
我正在寻找 MariaDB 或 MySQL 运行所需的最少文件,而无需像便携式服务器那样安装它。我更喜欢 MariaDB 而不是 MySQL。我想将它嵌入到我用 Delphi 编写的软件中。我的软件将能够根据需要启动和停止服务器。我用谷歌搜索但没有成功。
我读过一篇文章https://rawgit.com/pts/portable-mariadb/master/portable_mariadb.html和http://www.bluecrownsoftware.com/article/271/Installing-MySQL-without -Root-Access-on-Linux但它适用于 Linux,我对此没有经验。
我也读过MySql便携版的文章,但是这篇文章提到了MySQL Essential版本,我找不到它。如果我有一些成功运行服务器的配置文件提示,这将是一个额外的价值。
提前致谢。
解答
说到 MariaDB,就是 2 个文件和 3 个目录。
布局是这样的:
-
bin\mysqld.exe
-
共享\errmsg.sys
# you can take it from share\english in normal installation or ZIP
-
数据
# an empty directory
你可以从
bin\mysqld.exe --console --skip-grant-tables
(最后一个参数是必不可少的,因为您没有系统表)。
它缺少系统表,如果您需要创建它们,这将是几个文件。
这个工具帮助https://mariadb.com/kb/en/mariadb/mysql_install_dbexe/。mysqld_install_db.exe
需要放在mysqld.exe
旁边,然后您可以使用创建系统表
mysqld_install_db.exe --datadir=path-to-datadir
更新 MariaDB 10.5.3 及更高版本
-
bin\mysqld.exe
-
bin\server.dll
-
bin\mysql_install_db.exe(可选,运行一次创建数据目录,之后可以删除)
-
资料
与以前版本相比的变化:server.dll 是新的(mysqld.exe 需要它),errmsg.sys 不再需要
更多推荐
所有评论(0)