Tibero 6 TAC Installation 사전 준비 시스템 사용자 생성 (root 권한 필요) 관리 목적으로 지정하는 것이므로 설치하는 시스템에 맞게 시스템 사용자, 그룹, 보조 그룹, uid 등을 설정해서 사용한다. useradd tibero -g dba -u 8629 tibero 계정 프로파일 설정 Tibero 계정으로 sh 에 접근한 뒤 vi ~/.bash_profile 파일 맨 아래에 다음 내용을 추가한다. # Java ENV […]
[Tibero] Tibero6 Single 설치
Tibero 6 Single Installation 사전 준비 의존 패키지 (root 권한 필요) 다음 패키지들의 해당 버전 이상이 설치되어 있어야 한다. gcc-3.4.6-11 gcc-c++-3.4.6-11 libgcc-3.4.6-11 libstdc++-3.4.6-11 libstdc++-devel-3.4.6-11 compat-libstdc++-33-3.2.3-47.3 libaio-0.3.105-2 libaio-devel-0.3.105-2 시스템 사용자 생성 및 디렉토리 설정 시스템 사용자 생성 및 sh 프로파일 설정 시스템 사용자 생성 (root 권한 필요) 선택사항으로 DBA 또는 DB 사용자가 원하는 시스템 계정, 그룹으로 […]
[Tibero] Database Link
Tibero Database Link Database Link는 데이터베이스 내의 object 중의 하나로서 네트워크 상의 다른 데이터베이스에 접근하기 위해 사용 Tibero <-> Oracle 이기종 RDBMS 간의 접근을 위한 매개체(Gateway)가 필요 Tibero to Oracle (Local 방식) Gateway를 미리 기동하지 않고 DB Link 가 호출될 때마다 Gateway가 기동되는 방식. Tibero 프로세스가 Gateway 설정 정보를 알고있어야 하므로 DB가 이미 실행되고 있는 […]
[Linux] stty
stty changes and prints terminal line setting. stty displays or changes the characteristics of the terminal. stty sane same as cread -ignbrk brkint -inlcr -igncr icrnl -iutf8 -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0 isig icanon iexten echo echoe echok -echonl -noflsh -xcase -tostop […]
[Linux] NFS server/client installation
NFS server/client installation Package Install (Server/Client 공통) yum install nfs-utils systemctl enable rpcbind systemctl enable nfs-server systemctl enable nfs-lock systemctl enable nfs-idmap systemctl start rpcbind systemctl start nfs-server systemctl start nfs-lock systemctl start nfs-idmap systemctl stop firewalld Server 작업, 폴더 공유 공유 대상 폴더 생성 mkdir /nfs_dir 공유 허용할 호스트 지정 #vi /etc/exports /nfs_dir 192.168.xxx.xxx(rw,sync,no_root_squash,no_all_squash) […]
[Linux] How to mount NTFS on CentOS
How to mount NTFS on CentOS Make sure that you have the rpmforge repo installed yum install fuse fuse-ntfs-3g yum –enablerepo=rpmforge install fuse fuse-ntfs-3g For CentOS 7 or 6, the EPEL repository is carrying later NTFS packages, EPEL is alose usable for CentOS 5. yum install ntfs-3g yum –enablerepo epel install ntfs-3g
[Tibero] REDO Logfile 관리
logfile 사이즈 변경 logfile 상태 확인 select l.group#, l.status, l.bytes, lf.member , l.first_time from v$log l, v$logfile lf where l.group# = lf.group# Inactive 파일 삭제 alter database drop logfile group 1; –실제 데이터파일 삭제 필요 logfile 추가 alter database add logfile group 1 ( ‘/tbdata/redo011.redo’,’/tbdata/redo012.redo’); redo log 관련 view v$log SQL> desc v$log COLUMN_NAME TYPE […]