반응형
#1. 개요
- 리눅스에서 다른 서버에 있는 mysql에 접속하기 위한 방법을 소개합니다.
- 테스트는 CentOS 7 환경에서 진행하였습니다.
#2. 사용 방법
- mysql -h[대상 서버 주소] -u[아이디] -p[패스워드]
[root@localhost ~]# mysql -h192.168.1.180 -uroot -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 593
Server version: 10.2.10-MariaDB-log Source distribution
Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
반응형
'지식창고 > DataBase' 카테고리의 다른 글
[Maria/Mysql] ERROR 1201 (HY000): Could not initialize master info structure for ''; more error messages can be found in the MariaDB error log 에러 조치 방법 (0) | 2022.01.10 |
---|---|
[Maria/Mysql] 테이블 손상(crash) 복구 방법 (0) | 2022.01.03 |
[Maria/Mysql] 쿼리 결과를 csv 파일로 내려받기 (0) | 2021.12.16 |
[MariaDB&MySql] 자주 사용하는 명령어 모음 2 (0) | 2021.12.08 |
[MariaDB&MySql] 자주 사용하는 명령어 모음 1 (0) | 2021.12.06 |