运行时为一个数据库在Mysql中创建具有特定数据文件位置的数据库
任何人都可以提供有关如何在 mysql 中创建数据库的任何输入,其中应该在运行时创建其数据文件,而不是将其存储在 my.cnf 中指定的默认位置。
有没有办法在 mysql 中做到这一点,有人遇到过。
Can anyone give any input on how to create database in mysql where it should create its data file at runtime instead of storing it on default location specified in my.cnf.
Is there any way for doing this in mysql anyone come across.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每次启动服务器时,使用 --datadir 选项指定新的数据目录位置。
链接
Use a --datadir option to specify the new data directory location each time you start the server.
link