Oracle Fusion Middleware/WebCenter

1장. WebCenter Content 소개 및 설치준비

수상한 김토끼 2022. 9. 21. 13:07

안녕하세요.

'수상한 김토끼' 입니다.

 

Oracle의 WebCenter Content 가 무엇인지 알아보고 설치하는 과정을 진행해 보겠습니다.

 

이 블로그 글은 미들웨어 경험이 없으신 분들도 쉽게 따라 하실 수 있도록 쉽게 작성하는 것이 목표입니다.

설명을 보고 진행하시다가 궁금하신 내용은 댓글로 문의하시면 가능한 범위 내에서 알려 드리도록 하겠습니다.


1. WebCenter Content 소개

WebCenter에는 여러 제품군들이 있습니다만 이번에는 Content를 소개하고 설치하는 과정을 진행 해 보겠습니다.

 

WebCenter Content는 양식 인식, 이미지 캡처 및 데이터 추출을 자동화하여 문서 및 기록관리를 가능하게 해주는 솔루션입니다.

https://www.oracle.com/kr/content-management/webcenter-content/

 

Webcenter Content - 콘텐츠 관리 시스템 | Oracle 대한민국

기록 관리 완벽한 기록 보관 단일 애플리케이션에서 기업 전반의 콘텐츠 생성, 선언, 분류, 보존 및 처리를 제어할 수 있습니다. 확장된 거버넌스 단일 상호 작용 창구에서 파일 계획을 관리 및

www.oracle.com

 

WebCenter는 크게 아래의  3개 제품군으로 구성되어 있습니다.

 

1. WebCenter Content

2. WebCenter Site

3. WebCenter Portal

 

내용이 방대한 관계로 이번 주제는 Content에 한정하여 진행하도록 하고 추후 나머지 제품들도 포스팅하도록 하겠습니다.

https://www.oracle.com/middleware/technologies/webcenter.html

 

Oracle WebCenter | Oracle Technology Network | Oracle

Oracle WebCenter Oracle WebCenter is the center of engagement for business powering exceptional experiences for customers, partners, and employees. It connects people, processes, and information with the most complete portfolio of portal, content managemen

www.oracle.com

그럼 설치 준비를 진행하겠습니다.


2. WebCenter Content 설치준비

우선 WebCenter Content 설치 파일을 다운로드하여 줍니다.

https://www.oracle.com/middleware/technologies/webcenter-content-download.html

 

Oracle WebCenter Content Downloads

The above download links will direct you to the Oracle eDelivery web site where you will complete your download. You will be prompted to login with your Oracle Single Sign On account, select a platform to download, and accept the appropriate license agreem

www.oracle.com

공식 홈페이지의 Download 페이지를 통해 다운로드하실 수 있으며

'Oracle WebCenter Content'를 선택하여 파일을 다운로드하여 설치 서버에 업로드를 진행합니다.

WebCenter Download Page

WebCenter 제품군은 Fusion MiddleWare 제품군에 설치되는 Application 개념으로 사용을 위해서는 Fusion MiddleWare제품의 설치가 필요합니다.

WebCenter 버전과 같은 Fusion MiddleWare 12C 버전도 다운로드 받아 설치 서버에 업로드를 진행해 줍니다. 

https://docs.oracle.com/cd/E23104_01/download_readme.htm

 

Oracle® Fusion Middleware Download, Installation, and Configuration Readme Files

Oracle® Fusion Middleware Download, Installation, and Configuration Readme Files September 2019 The following documents contain important information to help you get started downloading, installing, and configuring the Oracle Fusion Middleware software. O

docs.oracle.com

WebCenter 제품과 동일한 버전인 12.2.1.4 버전으로 다운로드하였습니다.

 

Fusion MiddleWare Download Page

다운로드한 파일은 서버에 업로드해 줍니다.

1
2
3
4
5
6
7
8
[webcenter@coherence downloads]$ pwd
/home/webcenter/downloads
[webcenter@coherence downloads]$ ls -altrh
total 3.2G
-rw-rw-r--1 webcenter webcenter 1.7G Sep 19 15:01 fmw_12.2.1.4.0_wccontent.jar
drwxrwxr-x. 2 webcenter webcenter   83 Sep 19 15:01 .
-rw-rw-r--1 webcenter webcenter 1.6G Sep 19 15:04 fmw_12.2.1.4.0_infrastructure.jar
drwx------6 webcenter webcenter  183 Sep 21 12:44 ..
cs

설치에 사용되는 파일명은 다음과 같습니다.

1. fmw_12.2.1.4.0_wccontent.jar --> WebCenter Content 설치파일
2. fmw_12.2.1.4.0_infrastructure.jar --> Fusion MiddleWare 설치파일

여기에 추가로 Java 환경까지 구성해 주시면 설치 준비는 마무리됩니다.

Java는 12c 버전에서 사용 가능한 1.8.0_321로 준비하였습니다.

1
2
3
4
5
6
7
8
[webcenter@coherence ~]$ pwd
/home/webcenter
[webcenter@coherence ~]$ which java
~/jdk1.8.0_321/bin/java
[webcenter@coherence ~]$ java -version
java version "1.8.0_321"
Java(TM) SE Runtime Environment (build 1.8.0_321-b07)
Java HotSpot(TM) 64-Bit Server VM (build 25.321-b07, mixed mode)
cs

여기까지 WebCenter 서버의 설치 준비는 마무리되었습니다.


3. Database 준비

WebCenter Content는 Fusion MiddleWare에 설치되는 Application으로 설치, 사용을 위해서는 Database가 필요합니다.

설치 시 다수의 DB 스키마 생성이 필요하며, 실 사용에서도 사용되는 Database가 준비되어야 하며,

Oracle, My-sql, MS-SQL, DB2등의 Database를 지원합니다. 

 

저는 Oracle 12c Database를 준비하였습니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
[oracle@oracle-database ~]$ pwd
/home/oracle
[oracle@oracle-database ~]$ sqlplus '/as sysdba'
 
SQL*Plus: Release 12.2.0.1.0 Production on Wed Sep 21 04:04:29 2022
 
Copyright (c) 19822016, Oracle.  All rights reserved.
 
 
Connected to:
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production
 
SQL>
cs

여기까지 설치 준비가 완료되었습니다.

 

다음 장에서 Fusion MiddleWare 설치부터 진행하도록 하겠습니다.