前提・実現したいこと
dockerでxamppの代わりになるようなコンテナを作るために、sqlにログインしたいと思っています。
発生している問題・エラーメッセージ
mysqlログイン時にEnter passwordとpowerShellに表示されたのですが、入力できなかったので(半角が反応しない全角は打てる)入力の仕方を調べたら、ログイン時にパスワードをくっつけて入力する方法があったのでそれを試したらエラーが発生しました。
ERROR
1root@613015700dd5:/# mysql -u root -ppassword 2mysql: [Warning] Using a password on the command line interface can be insecure. 3Welcome to the MySQL monitor. Commands end with ; or \g. 4Your MySQL connection id is 12 5Server version: 8.0.23 MySQL Community Server - GPL 6 7Copyright (c) 2000, 2021, Oracle and/or its affiliates. 8 9Oracle is a registered trademark of Oracle Corporation and/or its 10affiliates. Other names may be trademarks of their respective 11owners. 12 13Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. 14エラーメッセージ
該当のソースコード
root@613015700dd5:/# mysql -u root -ppassword
環境
環境の書き方間違っているかもしれません。
Windows10 powershell
Docker Desktop
補足情報(FW/ツールのバージョンなど)
また、エラーが出ているのにmysqlに接続されている気がします。
root@613015700dd5:/# mysql -u root -ppassword
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 12
Server version: 8.0.23 MySQL Community Server - GPL
Copyright (c) 2000, 2021, Oracle and/or its affiliates.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。