BMS, Movie, Illustrations, Programming

[Linux] 初期パスワードを設定したのに MySQL から ERROR 1045 (28000): Access denied for user ‘username’@’localhost’ (using password: NO) と言われる場合

その場合は、パスワードログインをする -p コマンドラインオプションを指定してください。たとえば、rootユーザーであれば、mysql -u root -p と入力してください。

yuinore@hostname:~$ mysql
ERROR 1045 (28000): Access denied for user 'yuinore'@'localhost' (using password: NO)
yuinore@hostname:~$ mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 6
Server version: 5.7.18-0ubuntu0.16.04.1 (Ubuntu)

Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.

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> 

今日もまた情弱が露呈してしまった。

・・・ちなみに、パスワードなんか設定してないよ! っていう人は多分こっち