IT/SQL

[mac작업] mysql에 접속 및 DB 확인방법

insight_knowledge 2020. 5. 20. 12:05
728x90
반응형

안녕하세요 지식마블입니다. 오늘은 이어서 설치된 mysql에 접속하고 DB를 확인하는 방법을 알아보겠습니다. 



자, 먼저, 터미널을 열고서, 

아.. 혹시 맥에서 터미널을 어떻게 여는지 모르겠다고 하시는 분은, 


스팟라이트에서 (맥북 화면 우측 상단에 있는 돋보기 모양을 클릭하시면 됩니다) 터미널 이라고 입력하신 후, 엔터누르시면 바로 요런 터미널이 나옵니다. 


 


그리고 가서, /usr/local/mysql/bin/ 로 이동해주시구요, 



Daniel-Macui-MacBookAir:~ daniel_mac$ cd /usr/local/mysql/bin/


mysql에 접속을 합니다. 


Daniel-Macui-MacBookAir:bin daniel_mac$ ./mysql -u root -p


그러면 이렇게 패스워드 넣는 화면이 나오는데요, 


Enter password: 


여기에 패스워드 입력하시면, 


Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 21

Server version: 8.0.20 MySQL Community Server - GPL


Copyright (c) 2000, 2020, 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에 접속하신 겁니다! 


728x90
반응형

'IT > SQL' 카테고리의 다른 글

맥에서 postgreSQL 완전 삭제하는 법  (0) 2020.11.24
요새 많이 쓰이는 PostgreSQL 설치해보기  (0) 2020.07.01
가장 많이 사용되는 SQL명령어  (0) 2020.06.30
mysql 접속하는 법  (0) 2020.04.18
MySQL 스키마(schema)의 사용  (0) 2020.04.18