목록분류 전체보기 (135)
DBA가 되고 싶은 병아리
오라클을 새로 배우면서 만든 구구단 PL/SQL begin for i in 1..9 loop for j in 1..9 loop dbms_output.put_line(j||'*'||i||'='||i*j); end loop; end loop; end; / 실력이 부족한거 같다...
1. hosts 파일이 양쪽이 일치 하지 않는 경우 파일의 IP 주소가 일치 하지않아서 1번에서 2번으로는 통신이 가능했지만 2번에서 1번으로는 통신이 어려운 경우도 있었다. 2. 방화벽이 어느 한쪽이라도 작동하는 경우 Stop and Start RHEL7 firewall The firewall on Redhat 7 Linux system can be stopped by a followinglinux command: [root@rhel7 ~]# service firewalld stop Redirecting to /bin/systemctl stop firewalld.service Stopped firewall will start again after system's reboot. To start firew..
[root@ora10gr2x64 ~]# grep MemTotal /proc/meminfo MemTotal: 1024916 kB [root@ora10gr2x64 ~]# grep SwapTotal /proc/meminfo SwapTotal: 2048276 kB [root@ora10gr2x64 ~]# free total used free shared buffers cached Mem: 1024916 374928 649988 0 31420 187812 -/+ buffers/cache: 155696 869220 Swap: 2048276 0 2048276 [root@ora10gr2x64 ~]# [root@ora10gr2x64 ~]# [root@ora10gr2x64 ~]# df -k /tmp Filesystem 1K..
[root@ora10R2t Server]# rpm -ivh kernel-headers-2.6.18-194.el5.x86_64.rpm warning: kernel-headers-2.6.18-194.el5.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159 Preparing... ########################################### [100%] package kernel-headers-2.6.18-194.el5.x86_64 is already installed [root@ora10R2t Server]# rpm -q gcc-c++-4.1.2-48.el5.x86_64 gcc-4.1.2-48.el5.x86_64 libstdc++-de..
Installing required packages The minimum required packages given here are sufficient only if Linux has been installed without customizing the package selection. This list is based upon a "default-RPMs" installation of RHEL AS/ES 5. Additional RPMs may be needed if a "less-than-default-RPMs" installation of RHEL AS/ES 5 is performed. For more information, please refer to Note 376183.1 "Defining a..
이전 자료이기는 하지만 예전에 4버전 당시에 돈주고 공부했던 자료이다.... 아카이브 형식으로 기록한다. Desktops - X Window System - GNOME Desktop Environment) - KDE(K Desktop Environment) Applications - Editors Detailts Details for 'Editors' vim-X11 추가선택 후 [OK] - Graphical Internet Servers - Server Configuration Tools - Legacy Network Server Detailts Details for 'Legacy Network Server' - rsh-server 추가선택 - telent-server 추가선택 - tftp-server ..
OCR이나 voting설정하는 부분 이전까지는 설치가 잘되지만 그 이후로 설치가 제대로 되지 않는 현상이 여러번 발생하였다. MOS나 인터넷에 나오는 내용에 따르면 다음과 같은 형식으로 하라고 하더라... $ ./gridSetup.sh -applyPSU /u01/patch/27100009/ Preparing the home to patch... Applying the patch /u01/patch/27100009/... Successfully applied the patch. 패치 없이는 설치도 제대로 안되게 만들어진게 좀 실망스러웠다. 추가로 반드시 OPatch의 버전을 확인하거나 패치를 업데이트하는 게 좋을거 같다... 업데이트를 안해서 새로 압축을 여러번 풀어야 했었다..
[ Linux Commands ] [shutdown] 시스템을 종료하거나 재부팅하는 명령. root 계정만이 사용 가능. 1) 시스템 종료 shutdown -h now #시스템 즉시 종료 shutdown -h +10m #10분 후 시스템 종료 shutdown -c #종료 명령 취소(cancel) shutdown -k #종료한다는 메시지만 보내고 종료하지 않음 2) 시스템 재시작 shutdown -r now #시스템 즉시 재시작 shutdown -r 22:00 #22:00시에 시스템 재시작 shutdown -r +10m #10분 후 시스템 재시작 [init] 런레벨을 변경해서 부팅하는 명령어 0번 - 종료 1번 - 단일사용자 모드 : 시스템 복구 모드 2번 - 사용안함 3번 - 다중사용자 모드 : 텍스트모..