[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 […]
[Tibero] 데이터베이스 주요 파일 RENAME
개별 파일 변경 LOGFILE RENAME 로그파일 조회 select member from v$logfile; DB 종료 후 기존 로그파일 이동 cp redo001_old.redo redo001_new.redo mount 모드 기동 RENAME alter database rename file ‘redo001_old.redo’ to ‘redo001_new.redo’; DATAFILE RENAME 데이터파일 조회 select name from v$datafile; DB 종료 후 기존 데이터파일 이동 cp usr001_old.dtf usr001_new.dtf mount 모드 기동 RENAME alter database rename […]
[Linux] firewall-cmd
RHEL7부터 firewalld 데몬으로 방화벽 관리 firewall-cmd(cmd), firewall-config(X window) 커맨드로 설정 설치 및 실행 yum install firewalld systemctl start firewald systemctl enable firewalld ZONE 사전 정의된 존 목록 출력 firewall-cmd –get-zones 전체 존 목록 상세 출력 firewall-cmd –list-all-zones 기존 존 출력 firewall-cmd –get-default-zone 활성화 된 존 출력 firewall-cmd –get-active-zone SERVICE 서비스 목록 firewall-cmd –get-services Permanent로 등록된 […]
[Tibero] How to compile Invalid Objects
DB Upgrade/Patch, 해당 Table의 Columns 추가/삭제/변경이 발생하는 경우 Invalid Objects가 발생할 수 있다. Invalid Objects Recompile 방법 DBMS_DDL DBMS_UTILITY UTL_RECOMP UTLRP.SQL Manually Recompile 5. Manually Recompile ALTER OBJECT_TYPE SCHEMA.OBJECT_NAME COMPILE; ALTER OBJECT_TYPE SCHEMA.OBJECT_NAME COMPILE BODY; –(View,Synonym,Public Synonym,Procedure,Function,Package,Package Body,Trigger,Undefined (Materialized View),Java Class,Type Body)
[Linux] 고정 IP 설정
고정 IP 설정 $ vi /etc/sysconfig/network-scripts/ifcfg-${TARGET_NIC_ALIAS} BOOTPROTO=none IPADDR=192.168.xxx.100 NETMASK=255.255.255.0 GATEWAY=192.168.xxx.2 DNS1=192.168.xxx.2