Operating System

    CentOS7 -[에러코드] Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=stock error was14: curl#6 - "Could not resolve host: mirrorlist.centos.org; Unknown error"

    # 경로 이동cd /etc/yum.repos.d# 백업 폴더 생성mkdir old_repo# 기존 파일 이동mv CentOS-* old_repo# 폴더 이동mv old_repo /opt/apps/# 새 레포지토리 파일 생성# original이 기존, new가 새로운 URL입니다.# mirrorlist 부분은 모두 주석하였습니다.vi CentOS-Base.repo[base]name=CentOS-$releasever - Base# original#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra#baseurl=http://mirror.centos.org/centos/$releasever..

    Oracle Linux 7.9에 Oracle19c RAC 설치-(1)

    Oracle Linux 7.9에 Oracle19c RAC 설치-(1)

    1. 기본구성RAC1 (어댑터에 브리지,호스트전용),기본 메모리 8192 MBPublic IP :  192.168.200.103 Private IP :  192.168.56.103 Vitual IP :  192.168.200.153 Netmask : 255.255.255.0 Gateway : 192.168.200.1  DNS : 127.0.0.1  RAC2 (어댑터에 브리지,호스트전용),기본 메모리 8192 MB Public IP :  192.168.200.104 Private IP : 192.168.56.104 Vitual IP : 192.168.200.164 Netmask : 255.255.255.0 Gateway : 192.168.200.1  DNS : 127.0.0.1 2. VM 세팅  3. Or..

    CentOS7 Kernel-uek 다운

    CentOS7 Kernel-uek 다운

    * OS 환경 : CentOS 7.9 1. 새로운 repo 목록 다운# wget http://yum.oracle.com/public-yum-ol7.repo 2. 새로운 repo 활성화# yum-config-manager --enable ol7_UEKR5 3. 환경 업그레이드# yum upgrade 4. 환경 재부팅# reboot 5. uek 다운로드# cd /etc/yum.repos.d/# wget http://yum.oracle.com/public-yum-ol7.repo# yum repolist# yum upgrade# reboot

    CentOS7 -[에러코드] GPG key retrieval failed: [Errno 14] curl#37 - "Couldn't open file /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle"

    CentOS7 -[에러코드] GPG key retrieval failed: [Errno 14] curl#37 - "Couldn't open file /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle"

    * OS 환경 : CentOS 7.9 * 에러코드 : GPG key retrieval failed: [Errno 14] curl#37 - "Couldn't open file /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle" * 에러원인 : yum으로 설치할 때 발생 * 해결방법 : gpgcheck 값 수정 [root@rac1 yum.repos.d]# vi /etc/yum.repos.d/public-yum-ol7.repo# vi 명령어 : 입력 후 %s/gpgcheck=1/gpgcheck=0/g 입력:%s/gpgcheck=1/gpgcheck=0/g# 모든 gpgcheck=1을 gpgcheck=0/g으로 변경 설정 후 재설치하면 정상 완료됨

    오라클 TABLESPACE 파일경로 확인 및 이동

    오라클 TABLESPACE 파일경로 확인 및 이동

    * 테이블스페이스명 : gonmossi * 테이블스페이스 경로명 : /u01/app/oracle/oradata/DB11G/gon01.dbf * 변경할 경로명 : /home/oracle/gontest01.dbf 1. 테이블스페이스 생성 SQL> create tablespace gonmossi datafile '/u01/app/oracle/oradata/DB11G/gon01.dbf' size 10M; * 생성된 테이블스페이스에 데이터파일 추가하는법 SQL> alter tablespace gonmossi add datafile '/u01/app/oracle/oradata/DB11G/gon02.dbf' size 10M; 2. 테이블스페이스 경로 조회 SQL> select tablespace_name, statu..

    Linux7.x  LVM 생성

    Linux7.x LVM 생성

    * 하드디스크 추가 : /dev/sdb (VDI-동적할당-5GB) 1. 디스크 확인 [root@OL7 ~]# fdisk -l Disk /dev/sdb: 5368 MB, 5368709120 bytes, 10485760 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk /dev/sda: 85.9 GB, 85899345920 bytes, 167772160 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physi..

    Oracle 11g 아카이브 로그 모드(archive log mode) 변경

    Oracle 11g 아카이브 로그 모드(archive log mode) 변경

    * 아카이브 로그 모드 - 오라클DB에 접속하여 DML이나 DDL 등의 명령어로 작업을 수행하면 모든 작업의 기롤이 리두로그파일에 저장된다. 작업의 양이 많아지면 리두로그파일에 기록하는 내용이 많아지므로 리두로그파일을 늘려야 하는 일이 발생한다. 그런데 오라클 리두로그파일은 계속 증가하는 것이 아닌 몇 개의 리두로그파일을 만들어 놓고 번갈아가면서 기록하는 구조이다. 이렇게 번갈아가면서 기록을 하게 되면 새로운 작업의 내용이 예전의 작업내용을 덮어쓰므로 예전의 작업한 내용을 잃게 된다. 이러한 단점을 해결하기 위한 방법으로 리두로그파일의 내용을 다른 디렉토리에 자동으로 복사해서 저장하도록 운영하는 방법을 아카이브 로그 모드라고 한다. * 아카이브 로그 모드 설정 1. 현재 로그 모드 확인 [oracle@O..

    Linux7에 Tomcat 8 설치

    Linux7에 Tomcat 8 설치

    1. Tomcat 다운로드 - Tomcat 파일 다운로드 URL : tomcat.apache.org/download-80.cgi Apache Tomcat® - Apache Tomcat 8 Software Downloads Welcome to the Apache Tomcat® 8.x software download page. This page provides download links for obtaining the latest versions of Tomcat 8.x software, as well as links to the archives of older releases. Unsure which version you need? Specification versions tomcat.apache.org ..

    Linux7에 JDK1.8 설치

    Linux7에 JDK1.8 설치

    1. 설치된 JDK 목록 및 설치가능한 JDK목록 확인 [root@OL7 ~]# yum list java*jdk-devel Loaded plugins: langpacks, ulninfo Installed Packages java-1.8.0-openjdk-devel.x86_64 1:1.8.0.362.b08-1.el7_9 @ol7_latest Available Packages java-1.6.0-openjdk-devel.x86_64 1:1.6.0.41-1.13.13.1.el7_3 ol7_latest java-1.7.0-openjdk-devel.x86_64 1:1.7.0.261-2.6.22.2.0.1.el7_8 ol7_latest java-1.8.0-openjdk-devel.i686 1:1.8.0.362.b0..

    Linux 7에 Oracle 11g 설치(4)-리스너 설정

    1. 리스너 생성 [oracle@ ~ ]$ netca 2. 리스너 설정 # 리스너 위치 cd $ORACLE_HOME/network/admin ls # 아이피 입력 vi listerner.ora ------------------------------------------------------------------ LISTENER = (DESCRIPTION_LIST = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = xxx.xxx.xxx.xxx )(PORT = 1521)) (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521)) ) ) ADR_BASE_LISTENER = /u01/app/oracle