본문 바로가기

Linux

[UNIX] Valid Data Format Check #!/bin/ksh # validate date/time MMDD=$(expr substr "$*" 1 4) YYYY=$(expr substr "$*" 5 4) hh=$(expr substr "$*" 10 2) mm=$(expr substr "$*" 13 2) ss=$(expr substr "$*" 16 2) if touch -c -t $YYYY$MMDD$hh$mm.$ss dummyfile then echo valid else echo invalid fi 더보기
Oracle Linux Release 6 - Oracle Database 11g R2 설치 본 테스트는 테스트 서버에 Oracle을 설치하기 위하여 수행한 사항입니다. ref: http://www.oracle-base.com/articles/11g/OracleDB11gR2InstallationOnOracleLinux6.php 설치 환경 운영 체제: Oracle Enterprise Linux Release 6 Database: Oracle 11gR2 설치 순서 1. Database File Download oracle.com 참고 2. Host 설정 # /etc/hosts 수정 3. Set Kernel Parameters # /etc/sysctl.conf 확인 kernel.shmall = 2097152kernel.shmmax = 2147483648 # Smallest of -> (Half the.. 더보기
linux에 wls 다운로드 받아 설치하기 Here is a Simple Demonstration of Downloading the Oracle WebLogic 10.3.3 Development Edition (Zip Installer for Many Platforms) and to Create a Simple domain. This Installer has an Speciality that We need not to Install it. Because it is the Zip Version of it Just for Testing and Development purpose. Sothat we can test All the new Features added in this release. You can download it from:http://d.. 더보기
[스크랩] crontab 사용법 # crontab -l 현재사용하고 있는 crontab 파일 출력 # crontab -e crontab 파일의 수정(edit) crontab -e 로 수정이 안될경우 1. #csh 2. #setenv EDITOR vi 명령 수행후 수정함 root crontab file /etc/cron.d/logchecker : /var/cron/log가 최대 화일 크기를 초과하는지를 판단하고, 만약 초과하면 내용을 /var/cron/olog로 복사한다. /usr/lib/newslog : syslog daemon에 의해서 /var/adm 디렉토리에 생성되는 log file을 청소한다. Controlling crontab Access cron utility를 제어하는 두개의 file /etc/cron.d/cron.allo.. 더보기