blob: da03a15d8b70576b935a263be493b7026635d50e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
use mysql;
# 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
|