我尝试通过EasyPHP DEVSERVER 16.1.1更改安装的MySQL DataDir的默认路径,但每次启动mysql时,都会将datadir重置为默认值。
你帮我吗?答案 0 :(得分:1)
更改位于您要使用的mysql文件夹中的eds-app-actions.php
文件中的以下行(在eds-binaries/dbserver
中)。
// Update datadir
//$replacement = '${1}' . str_replace('\\', '/', __DIR__) . '/data/$3'; // original
$replacement = '${1}' . 'your/new/path/$3';
// don't change the other lines
// Update innodb_data_home_dir
//$replacement = '${1}' . str_replace('\\', '/', __DIR__) . '/data/$3'; // original
$replacement = '${1}' . 'your/new/path/$3';
// don't change the other lines
// Update innodb_log_group_home_dir
//$replacement = '${1}' . str_replace('\\', '/', __DIR__) . '/data/$3'; // original
$replacement = '${1}' . 'your/new/path/$3';
// don't change the other lines