blob: edcc69aaeb718edf8cf7c8187459680d6d190fe7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
use mysql;
Running bootstrap
Creating my.ini file
Removing default user
Allowing remote access for user root
Setting root password
Creation of the database was successful
# Kill the server
connect con1,localhost,root,パスワード,mysql;
SELECT @@datadir;
@@datadir
DATADIR/
# Kill the server
connection default;
# restart
use test;
|