SUGIZ
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
]
開始行:
#navi([[Sugi]]);
*備忘録
mysqladmin -u root password 'the password'
mysql -u root -p
mysql> create database thedb;
mysql> grant all on thedb.* to user@'example.com' identif...
mysql> flush privileges;
mysql> select user,host from mysql.user;
mysql> select db,host,user from mysql.db;
mysqldump -u user -p 'the password' thedb > db.dump
mysql -u user -p 'the password' thedb < db.dump
#navi([[Sugi]]);
終了行:
#navi([[Sugi]]);
*備忘録
mysqladmin -u root password 'the password'
mysql -u root -p
mysql> create database thedb;
mysql> grant all on thedb.* to user@'example.com' identif...
mysql> flush privileges;
mysql> select user,host from mysql.user;
mysql> select db,host,user from mysql.db;
mysqldump -u user -p 'the password' thedb > db.dump
mysql -u user -p 'the password' thedb < db.dump
#navi([[Sugi]]);
ページ名: