2. MySQL에 접속하려면 명령 프롬프트 창을 열고 MySQL 루트 계정의 ID와 password를 입력해야 합니다. MySQL 8.0 Command Line Client를 사용한다면 root 계정의 password만 입력합니다.
코드 17-2 명령 프롬프트 화면
C:\>mysql -u root -p ➊
Enter password: **** ➋
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 774
Server version: 5.6.24-log MySQL Community Server (GPL)
Copyright (c) 2000, 2015, 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> ➌
➊ MySQL에 접속하려고 mysql -u root -p 명령을 입력합니다.
➋ password를 입력합니다.
➌ 올바르게 MySQL에 접속하면 mysql> 프롬프트가 나타납니다.