2017-01-09 64 views

回答

0

更改位於要使用的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