edit *.vmx Add following line ethernet0.virtualDev = “e1000” https://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1003020
[Tibero] tbExport/tbImport
tbExport/tbImport Tibero를 설치하면 $TB_HOME/client/bin 경로에 기본적으로 포함된 유틸리티로, tbExport는 Tibero 데이터베이스 객체의 전체나 일부를 파일로 추출하며, 추출된 덤프 파일과 tbImport를 이용해서 Tibero에 데이터를 다시 생성할 수 있다. tbExport 모드 전체 데이터베이스 모드 Tibero 데이터베이스 전체를 덤프하는 모드로 아래 파라미터 지정으로 설정할 수 있다. FULL=Y 사용자 모드 지정된 사용자의 모든 객체를 덤프하는 모드로 아래와 같이 userlist를 […]
[Tibero] Tibero6 TAC 설치
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) […]