rootにパスワードを付ける。
1 2 3 |
$ mysql -u root > set password for root@localhost=password('xxxxx'); > exit |
rootにログイン。
1 2 3 |
$ mysql -u root -p Enter password: xxxxx > |
最近はウェブ系アプリ中心、あとWindowsアプリちょっと
rootにパスワードを付ける。
1 2 3 |
$ mysql -u root > set password for root@localhost=password('xxxxx'); > exit |
rootにログイン。
1 2 3 |
$ mysql -u root -p Enter password: xxxxx > |