Tag Archives: Postgresql

각 종 DB JDBC Driver 연결(Oracle, Mysql, MSSQL, JavaDB, Postgresql )

  1. Oracle 1). 서버환경 – 서버 주소 : 127.0.0.1 – 서비스 포트 : 1521 2). JDBC 설정 – Driver 클래스 : oracle.jdbc.driver.OracleDriver – URL 형식 : jdbc:oracle:thin:@127.0.0.1:1521 2. MySQL 1). 서버환경 – 서버 주소 : 127.0.0.1 – 서비스 포트 … Continue reading

Posted in Database, Java/JSP | Tagged , , , , , , , , | Leave a comment

PostgreSQL 8.3.3 리눅스 설치..

  PostgreSQL 8.3.3 리눅스 설치.. 홈페이지 : http://www.postgresql.org/ ]$ ./configure ]$ gmake ]$ su ]# gmake install ]# adduser postgres ]# mkdir /usr/local/pgsql/data ]# chown postgres /usr/local/pgsql/data ]# su – postgres ]$ /usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data ]$ /usr/local/pgsql/bin/postgres -D /usr/local/pgsql/data >logfile … Continue reading

Posted in Database | Tagged , | Leave a comment