본문 바로가기
DB/MySQL

Mysql 접속하기

by 가므자 2012. 3. 6.

- 보안텔넷(SSH)에 접속을 한 상태에서 아래의 접속명령문으로 MySQL에 접속합니다.
$ mysql -h[DB서버IP] -u[아이디] -p ---> 해당 DB서버로 접속합니다.

Enter password: --> 패스워드 입력
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 13449413 to server version: 3.23.52-log

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> use [데이터베이스명] ---> 해당 DB를 선택합니다.

Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed mysql> show tables; ---> 존재하는 table 확인

mysql> desc [table명]; ---> 테이블의 칼럼명이나 속성을 확인

mysql> exit ---> DB 접속을 끊습니다.
- 아이네임즈 호스팅은 웹서버와 데이터베이스 서버가 분리되어 운영이 되므로 접속시 -h[DB서버IP] 를 입력해
주셔야 합니다.

- DB서버IP, 아이디, 패스워드는 호스팅 설치 완료시 발송해 드린설치완료 메일을 참조해 주시기 바랍니다.

'DB > MySQL' 카테고리의 다른 글

Mysql 복구하기  (0) 2012.03.06
Mysql 백업하기  (0) 2012.03.06
PHP와 mysql을 이용해서 게시판 만들기  (1) 2012.03.05
WHERE 절  (0) 2012.03.05
FROM 절  (0) 2012.03.05

댓글