blob: a3ee1137e9805e17a3ae2a85e4b847ef251f465f (
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=パスワード
connect con1,localhost,root,$password,mysql;
select @@datadir;
@@datadir
DATADIR/
# Stop service and wait until it is down
# Delete service
connection default;
# restart
|