I am trying to change the datadir a mysql installation (of xampp) to put it in a cloud directory like dropbox o Google Drive a development database.
The steps followed by me are these:
- Sutdown the mysql server.
- Copy all files and dir from C:\xampp\mysql\data and put them in my cloud dir (C:\users\Dani\Google Driver_web_development\web-mysql-databases)
Open
my.inifile onc:\xampp\mysql\bin\and change these variables:datadir = "C:/Users/Dani/Google Drive/_web_development/web-mysql-databases" by datadir = "C:/xampp/mysql/data"
innodb_data_home_dir = "C:/Users/Dani/Google Drive/_web_development/web-mysql-databases" by innodb_data_home_dir = "C:/xampp/mysql/data"
innodb_log_group_home_dir = "C:/Users/Dani/Google Drive/_web_development/web-mysql-databases" by innodb_log_group_home_dir = "C:/xampp/mysql/data"
plugin_dir = "C:/Users/Dani/Google Drive/_web_development/web-mysql-databases/lib/plugin/" by plugin_dir = "C:/xampp/mysql/data"
Save the changes and launch up the service again.
MYSQL cannot stay running.
Note: When i put all files in its original place (c:\xampp\mysql\data), all works fine. And no log is produced in my data directory.
How can i do?