blob: 0a5e8693b6bc12b28d668ed725c84105aee2cbac (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# run mysql_install_db with --service parameter
# Start service
# Connect with root user password=password
connect con1,localhost,root,$password,mysql;
select @@datadir;
@@datadir
DATADIR/
# Stop service and wait until it is down
# Delete service
connection default;
# restart
|