我正在尝试移动 mysql 数据库的位置。我尝试按照说明进行操作这里以及其他地方,它们说要更改“/etc/mysql/my.cnf”中的“datadir”目录。我的问题是“/etc/mysql/my.cnf”仅包含以下内容:
# For explanations see
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html
#
# * IMPORTANT: Additional settings that can override those from this file!
# The files must end with '.cnf', otherwise they'll be ignored.
#
!includedir /etc/mysql/conf.d/
!includedir /etc/mysql/mysql.conf.d/
如您所见,没有“datadir”这个值。
非常感谢您的帮助。我正在运行 Ubuntu 15.04
答案1
只需创建一行datadir = /path
即可
[mysqld]
#
# * Basic Settings
#
然后重新启动 MySQL。