신문지한장

[Install] oracle Enterprise Manager cloud control 13c install (GUI) 본문

Oracle/Install

[Install] oracle Enterprise Manager cloud control 13c install (GUI)

신문지한장 2024. 5. 30. 14:52
OS : CentOS7.9 (64bit)
DB : Oracle Enterprise Manager Cloud Control 13c ( Release - 13.5 )

 

[ install file 위치 ] https://www.oracle.com/enterprise-manager/downloads/linux-x86-64-13c-rel5-downloads.html

 

Oracle Enterprise Manager Downloads for Linux x86-64

Oracle Enterprise Manager Downloads for Linux x86-64 Oracle Enterprise Manager Cloud Control 13c Release 5 (13.5.0.0.0) for Linux x86-64 Download the complete files Directions Download all the files including .bin in same directory. No need to unzip the do

www.oracle.com

[ 필요 파일 ]

1. em13500_linux64.bin
2. em13500_linux64-3.zip
3. em13500_linux64-4.zip
4. em13500_linux64-2.zip
5. em13500_linux64-5.zip

 

1. OS 환경 설정

1-1. OS 최소 요구 사항

Disk는 약 50G 필요 [/]
Evaluation or Simple Installation : cpu 2/ RAM 10G
Advanced Installation (SMALL) : cpu 4/ RAM 10G
Advanced Installation (MEDIUM) : cpu 6/ RAM 12G
Advanced Installation (LARGE) : : cpu 12/ RAM 24G

 

- efi 500m

- swap 10G

- boot 500m

 

해당 문서는 SMALL 설치

 

1-2. 패키지 설치

yum install make -y
yum install binutils -y
yum install gcc -y
yum install libaio -y
yum install glibc-common -y
yum install libstdc++ -y
yum install libXtst -y
yum install sysstat -y
yum install glibc -y
yum install glibc-devel -y
yum install glibc-devel*i686 –y


-- Linux8일 경우
# dnf install -y libnsl
# dnf install -y libnsl.i686
# dnf install -y libnsl2
# dnf install -y libnsl2.i686

 

1-3. host 설정

[root@emtest app]# cat /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6

192.168.0.241 emtest

 

1-4. 커널 매개 변수 요구 사항(UDP and TCP Kernel Parameters)

# cat /proc/sys/net/ipv4/ip_local_port_range
32768 61000

# echo 11000 65000 > /proc/sys/net/ipv4/ip_local_port_range

# systemctl restart network
# systemctl restart NetworkManager -- Linux8

 

1-5. limits 값 설정

# vi /etc/security/limits.conf
oracle           soft    nofile          30000

 

 

1-6. 방화벽 해제

# vi /etc/selinux/config
SELINUX=disabled

# systemctl stop firewalld
# systemctl disable firewalld
# systemctl restart NetworkManager -- Linux8

 

1-7. Enterprise Manager 클라우드 제어를 위한 운영 체제 그룹 및 사용자 생성

# groupadd dba
# useradd -g dba oracle
# passwd oracle

# mkdir -p /oracle/app/oracle/middleware
# mkdir -p /oracle/install_file
# mkdir -p /oracle/app/oracle/agent
# chown -R oracle.dba /oracle
# chgrp -R dba /oracle

 

1-8. 파일 업로드 (해당 영역에 5ea file 업로드)

/oracle/install_file

em13500_linux64.bin
em13500_linux64-3.zip
em13500_linux64-4.zip
em13500_linux64-2.zip
em13500_linux64-5.zip

 

1-9. oracle bash_profile 설정

export ORACLE_BASE=/oracle/app/oracle
export MW_HOME=/oracle/app/oracle/middleware
export AGENT_BASE=/oracle/app/oracle/agent

 

2. EM manager install

2-1. EM manager install

$ chmod +x em13500_linux64.bin

 

This information is also available at: 

	/oracle/app/oracle/middleware/install/setupinfo.txt

See the following for information pertaining to your Enterprise Manager installation:


Use the following URL to access:

	1. Enterprise Manager Cloud Control URL: https://emtest.kr:7803/em
	2. Admin Server URL: https://emtest.kr:7102/console

The following details need to be provided while installing an additional OMS:

	1. Admin Server Host Name: emtest.kr
	2. Admin Server Port: 7102

You can find the details on ports used by this deployment at : /oracle/app/oracle/middleware/install/portlist.ini


 NOTE:
 An encryption key has been generated to encrypt sensitive data in the Management Repository. If this key is lost, all encrypted data in the Repository becomes unusable. 

 A backup of the OMS configuration is available in /oracle/app/oracle/gc_inst/em/EMGC_OMS1/sysman/backup on host emtest.kr. See Cloud Control Administrators Guide for details on how to back up and recover an OMS.

 NOTE: This backup is valid only for the initial OMS configuration. For example, it will not reflect plug-ins installed later, topology changes like the addition of a load balancer, or changes to other properties made using emctl or emcli. Backups should be created on a regular basis to ensure they capture the current OMS configuration. Use the following command to backup the OMS configuration:
/oracle/app/oracle/middleware/bin/emctl exportconfig oms -dir <backup dir>

'Oracle > Install' 카테고리의 다른 글

[Install] oracle 12c install on Centos7.9  (0) 2024.04.18
[Install] oracle 19c install on Centos7.9  (0) 2023.11.25