Development/MariaDB

[MariaDB] 원격 접속 방법

qWooWp 2019. 1. 21. 17:30
반응형



Logging into MariaDB

        mysql -u //user_name// -p -h //ip_address// //db_name//

        pass 화면이 뜨면 정상 접속 된 것으로 보면 됨. 
        mysql -u root -p -h 172.16.10.20

If you want to display your tables on the screen.
        Show tables; 

Database 선택
use test;

반응형