[운영 종료] TmaxTibero Tech Blog

티맥스티베로 공식 블로그는 https://tmaxtibero.blog/ 로 이전되었습니다.

티맥스티베로 공식 블로그 이전 자세히보기

PostgreSQL 4

[Tibero] DBLINK 설정_Tibero to PostgreSQL (4)

PostgreSQL 설치 2. DB 구성 2.1. 관리자 비밀번호 설정 [postgres@www:/home/postgres]$ psql -dpostgres Enter new password: [암호 입력] Enter it agin: [암호 재입력] ​ ​ ​ 2.2. postgresql.conf 파일 변경 [postgres@www:/home/postgres]$ vi /home/postgres/pgsql/data/postgresql.conf #listen_addresses = 'localhost' → listen_addresses = '*' 로 변경 ​ ​ ​ 2.3. pg_hba.conf 파일 변경 [postgres@www:/home/postgres]$ vi /home/postgres/pgsql/data..

[Tibero] DBLINK 설정_Tibero to PostgreSQL (3)

PostgreSQL 설치 1. 엔진 설치 1.1. 패키지 설치 [root@www:/root]yum -y install gcc gcc-c++ make autoconf wget readline readline-devel zlib zlib-devel openssl openssl-devel gettext gettext-devel python python-devel ​ 1.2. 설치 파일 업로드 및 압축 해제 아래 링크를 통해 원하는 버전을 다운로드 합니다. Index of /pub/source/ ftp.postgresql.org [root@www:/root]cd /usr/local/src [root@www:/usr/local/src]ls -al total 196140 drwxr-xr-x. 5 root root ..

[Tibero] DBLINK 설정_Tibero to PostgreSQL (2)

DBLink 설정 및 확인 2. PostgreSQL 2.1. DB 및 유저 생성 [postgres@www:/home/postgres]$ psql psql (12.3) Type "help" for help. ​ postgres=# create database test; CREATE DATABASE ​ postgres=# select * from pg_database; oid | datname | datdba | encoding | datcollate | datctype | datistemplate | datallowconn | datconnlimit | datlastsysoid | datfrozenxid | datminmxid | dattablespace | datacl -------+-----------..

[Tibero] DBLINK 설정_Tibero to PostgreSQL (1)

본 문서에서는 Tibero Java Gateway을 이용한 Tibero to PostgreSQL DB Link 설정 및 테스트 환경 구축을 위한 PostgreSQL 설치 방법을 안내 합니다. ​ ​ 테스트 구성 환경 OS PostgreSQL Java Gateway Tibero Version : Red Hat Enterprise Linux Server release 7.4 IP : 192.168.0.180 ​ ​ Version : PostgreSQL 12.3 OS user : postgres DB name : test DB user : pg Port : 5432 ​ Port : 9099 ​ ​ ​ ​ ​ Version : Tibero 6 (DB 6.0 FS07_CS_1912) OS user : nam DB..