web developer👩🏻‍💻

DB 기본 포트 정리 본문

DB

DB 기본 포트 정리

natrue 2021. 4. 12. 14:14
728x90

JDBC 연결 문법 

-로컬에서 연결 시 : localhost or 127.0.0.1
-외부 연결 시 : 해당 외부 아이피
MySQL / MariaDB  3306 jdbc:mysql://127.0.0.1:3306/[database name]
Oracle  1521 jdbc:oracle:thin:@127.0.0.1:1521:[database name]
MS-SQL 1433 jdbc:sqlserver://127.0.0.1:1433;database=[database name]; 
PostgreSQL 5432 jdbc:postgresql://127.0.0.1:5432/[database name]
Tibero 8629 jdbc:tibero:thin:@127.0.0.1:8629:[database name]

 

 

 

 

참고 : java119.tistory.com/category/DB