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

잔글 (→‎원격)
48번째 줄: 48번째 줄:
*http://www.linuxquestions.org/questions/linux-general-1/mysql-in-bash-script-916360/
*http://www.linuxquestions.org/questions/linux-general-1/mysql-in-bash-script-916360/
*http://stackoverflow.com/questions/3900496/using-shell-script-to-insert-data-into-remote-mysql-database
*http://stackoverflow.com/questions/3900496/using-shell-script-to-insert-data-into-remote-mysql-database
*http://mindspill.net/computing/linux-notes/run-mysql-commands-from-the-bash-command-line/


[[분류: Bash]]
[[분류: Bash]]
[[분류: MySQL]]
[[분류: MySQL]]

2013년 3월 19일 (화) 18:14 판

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@remote ~]# mysql -h111.222.33.44 -uroot -pP@ssw0rd mysql -e "SHOW TABLES"
+---------------------------+
| Tables_in_mysql           |
+---------------------------+
| columns_priv              |
| db                        |
| event                     |
... (생략)
| user                      |
+---------------------------+

3 같이 보기

4 참고 자료

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