Linuxサーバでmysqlにログイン
- 「mysql -u ユーザ名 -p」と入力。
- パスワードを入力。
MySQLへのログインが成功した場合
bash-2.05a$ mysql -u ユーザ名 -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 10840656 to server version: 4.0.26-standard
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 10840656 to server version: 4.0.26-standard
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
「mysql」とだけ入力してEnterキーを押すと以下のようなエラーとなるので注意。
bash-2.05a$ mysql
ERROR 1045: Access denied for user: 'ユーザ名@localhost' (Using password: NO)
ERROR 1045: Access denied for user: 'ユーザ名@localhost' (Using password: NO)