"Bash에서 MySQL 사용"의 두 판 사이의 차이

(새 문서: ;Bash에서 MySQL 접근 ==로컬== ;명령어 <source lang='bash'> mysql -u아이디 -p패스워드 디비명 -e "쿼리문" </source> ;실행예시 <source lang='dos'> [root@jmnot...)
 
1번째 줄: 1번째 줄:
;Bash에서 MySQL 접근
;Bash에서 MySQL 접근
;Bash에서 원격으로 MySQL 쿼리 수행


==로컬==
==로컬==
10번째 줄: 11번째 줄:
<source lang='dos'>
<source lang='dos'>
[root@jmnote ~]# mysql -uroot -pP@ssw0rd mysql -e "SHOW TABLES"
[root@jmnote ~]# mysql -uroot -pP@ssw0rd mysql -e "SHOW TABLES"
+---------------------------+
| Tables_in_mysql          |
+---------------------------+
| columns_priv              |
| db                        |
| event                    |
... (생략)
| user                      |
+---------------------------+
</source>
==원격==
;명령어
<source lang='bash'>
mysql -h서버주소 -u아이디 -p패스워드 디비명 -e "쿼리문"
</source>
;실행예시
<source lang='dos'>
[root@jmnote ~]# mysql -h111.222.33.44 -uroot -pP@ssw0rd mysql -e "SHOW TABLES"
+---------------------------+
+---------------------------+
| Tables_in_mysql          |
| Tables_in_mysql          |

2013년 3월 14일 (목) 09:34 판

Bash에서 MySQL 접근
Bash에서 원격으로 MySQL 쿼리 수행

1 로컬

명령어
mysql -u아이디 -p패스워드 디비명 -e "쿼리문"
실행예시
[root@jmnote ~]# mysql -uroot -pP@ssw0rd mysql -e "SHOW TABLES"
+---------------------------+
| Tables_in_mysql           |
+---------------------------+
| columns_priv              |
| db                        |
| event                     |
... (생략)
| user                      |
+---------------------------+

2 원격

명령어
mysql -h서버주소 -u아이디 -p패스워드 디비명 -e "쿼리문"
실행예시
[root@jmnote ~]# mysql -h111.222.33.44 -uroot -pP@ssw0rd mysql -e "SHOW TABLES"
+---------------------------+
| Tables_in_mysql           |
+---------------------------+
| columns_priv              |
| db                        |
| event                     |
... (생략)
| user                      |
+---------------------------+

3 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}