본문 바로가기

지식창고/DataBase

[Maria/Mysql] mysql 원격 접속 방법

반응형
#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)]>

 

반응형