Skip to content

Commit c7cc90a

Browse files
authored
Add OHS 14.1.2.0.0 docker-images (#2907)
* Adding OHS 14.1.2 * 14.1.1.2 Dockerfile edits * Fix README.md * Correct md5sum in buildDockerImage.sh * Correct md5sum in buildDockerImage.sh * Add other methods to obtain the OHS images * correct typo * Address comments for Dockerfile and helloWorld.html
1 parent 6aea2b1 commit c7cc90a

17 files changed

+580
-8
lines changed

OracleHTTPServer/COPYRIGHT

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2020, 2024, Oracle and/or its affiliates.
1+
Copyright (c) 2020, 2025, Oracle and/or its affiliates.
22
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
Permission is hereby granted, free of charge, to any person obtaining

OracleHTTPServer/README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# Oracle HTTP Server in containers
22
===================================
3-
This project includes quick start dockerfiles and samples for standalone Oracle HTTP Server based on Oracle Linux and Oracle JDK 8 (Server).
3+
This project includes quick start dockerfiles and samples for standalone Oracle HTTP Server 12.2.1.4.0 and JDK 8 and 14.1.2.0.0 JDK 17 and 21 based on Oracle Linux 8 and 9.
44
The certification of OHS in containers does not require the use of any file presented in this repository.
55
Customers and users are welcome to use them as starters, and customize/tweak, or create from scratch new scripts and Dockerfiles.
66

7+
The samples in this repository are for trial use cases only. For alternative methods, we suggest obtaining base Oracle HTTP Server images from the [Oracle Container Registry](https://container-registry.oracle.com/), using the open source [WebLogic Image Tool](https://oracle.github.io/weblogic-image-tool) to create custom images.
8+
79
## How to Build and Run
810
This project offers Dockerfile for Oracle HTTP Server in standalone mode. To assist in building the images, you can use the buildDockerImage.sh script. See below for instructions and usage
911

@@ -68,4 +70,4 @@ To download and run Oracle JDK regardless of inside or outside a container, you
6870
All scripts and files hosted in this project and GitHub [docker/OracleHTTPServer](./) repository required to build the images are, unless otherwise noted, released under the Universal Permissive License v1.0.
6971

7072
## Copyright
71-
Copyright (c) 2019, 2024, Oracle and/or its affiliates. All rights reserved.
73+
Copyright (c) 2019, 2025, Oracle and/or its affiliates. All rights reserved.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
#
2+
# Copyright (c) 2025 Oracle and/or its affiliates. All rights reserved.
3+
4+
5+
#
6+
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
7+
#
8+
# ORACLE HTTP Server DOCKERFILES PROJECT
9+
# -----------------------------------------
10+
# This is the DockerFile for Oracle HTTP Server 14.1.2.0.0
11+
#
12+
# IMPORTANT
13+
# -------------------------------------------
14+
# The resulting image of this Dockerfile would have Oracle Linux 8 and 9 and Oracle HTTP Server 14.1.2.0.0 installed in standalone mode.
15+
16+
# A standalone domain will be configured in this image
17+
#
18+
# REQUIRED FILES TO BUILD THIS IMAGE
19+
# ----------------------------------
20+
# (1) V1045136-01.zip Oracle HTTP Server 14.1.2.0 for Linux x86-64 installer
21+
# Download from http://www.oracle.com/technetwork/middleware/webtier/downloads/index-jsp-156711.html
22+
# unzip you will need the OHS installer (bin file) fmw_14.1.2.0.0_ohs_linux64.bin
23+
#
24+
#
25+
# HOW TO BUILD THIS IMAGE
26+
# -----------------------
27+
# Put all downloaded files in the same directory as this Dockerfile
28+
# As root user run following command manually:
29+
#
30+
# $ sh buildDockerImage.sh -v 14.1.2.0.0
31+
#
32+
# Alternatively you can also run
33+
#
34+
# $ docker build --force-rm=true --no-cache=true --rm=true -t oracle/$IMAGE_NAME:$VERSION-$INSTALL_TYPE .
35+
#
36+
# For example
37+
#
38+
# $ docker build --force-rm=true --no-cache=true --rm=true -t oracle/ohs:14.1.2.0.0 .
39+
#
40+
# Pull JDK 17 image from OCR as base image
41+
# -----------------------------------------
42+
FROM container-registry.oracle.com/java/jdk:17.0.14
43+
44+
# Environment variables required for this build (do NOT change)
45+
# ----------------------------------------------
46+
ENV OHS_PKG=V1045136-01.zip
47+
ENV OHS_BIN=fmw_14.1.2.0.0_ohs_linux64.bin
48+
ENV ORACLE_HOME=/u01/oracle
49+
ENV NM_PORT=5556
50+
ENV OHS_LISTEN_PORT=7777
51+
ENV OHS_SSL_PORT=4443
52+
ENV JAVA_HOME=/usr/java/default
53+
ENV DOMAIN_NAME=ohsDomain
54+
ENV OHS_COMPONENT_NAME=ohs1
55+
ENV PATH=${PATH}:${ORACLE_HOME}:/usr/java/default/bin:${ORACLE_HOME}/oracle_common/common/bin:${ORACLE_HOME}/user_projects/domains/ohsDomain/bin
56+
ENV WLST_HOME=/u01/oracle/oracle_common/common/bin
57+
58+
59+
# Copy packages to the new drive
60+
# -------------------------------------------------------
61+
COPY ${OHS_PKG} install.file oraInst.loc /u01/
62+
63+
# Install OL 8 or OL 9 required packages. Refer FMW 14.1.2.0.0 System requirements guide for complete list of packages
64+
# Setup filesystem and oracle user
65+
#---------------------------------------------------------------------------------------------------------
66+
RUN yum install -y unzip libaio sysstat make psmisc gcc && \
67+
yum clean all && \
68+
chmod a+xr /u01 && \
69+
useradd -b /u01 -m -s /bin/bash oracle && \
70+
mkdir /u01/oracle/.inventory /u01/oracle/bootdir && \
71+
chown oracle:oracle -R /u01
72+
73+
# Go to /u01 as user 'oracle' to proceed with OHS installation
74+
#--------------------------------------------------------
75+
USER oracle
76+
WORKDIR /u01
77+
#RUN unzip -q /u01/${OHS_PKG} && cd - && \
78+
RUN unzip -q /u01/${OHS_PKG} && \
79+
/u01/${OHS_BIN} -silent -novalidation -responseFile /u01/install.file -invPtrLoc /u01/oraInst.loc ORACLE_HOME=${ORACLE_HOME} && \
80+
rm /u01/${OHS_BIN} /u01/oraInst.loc /u01/install.file && \
81+
mkdir -p /u01/oracle/logs && \
82+
chown oracle:oracle -R /u01/oracle/logs
83+
84+
# Copy required files to build this image
85+
# ------------------------------------------------------
86+
COPY container-scripts/* /u01/oracle/
87+
88+
#Expose all Ports
89+
EXPOSE ${OHS_SSL_PORT} ${OHS_LISTEN_PORT} ${NM_PORT}
90+
91+
# Final setup
92+
USER oracle
93+
WORKDIR ${ORACLE_HOME}
94+
95+
# Provision OHS instance
96+
CMD ["/u01/oracle/provisionOHS.sh"]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#
2+
# Copyright (c) 2025 Oracle and/or its affiliates. All rights reserved.
3+
#
4+
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
5+
#
6+
#
7+
# Download the OHS 14.1.2.0.0 software for LINUX.x64 (V1045136-01.zip)
8+
#
9+
# from http://www.oracle.com/technetwork/middleware/webtier/downloads/index-jsp-156711.html
10+
#
11+
#
12+
6f5fbc72f151426a8cca775bed058b2d V1045136-01.zip
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
#!/bin/bash
2+
3+
#
4+
# Copyright (c) 2025 Oracle and/or its affiliates. All rights reserved.
5+
#
6+
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
7+
#
8+
#*************************************************************************
9+
#This script will configure Oracle WebLogic Server Proxy Plug-In (mod_wl_ohs),
10+
#in order to enable the Oracle HTTP Server instances to route applications
11+
#deployed on the Admin Server, Single Managed Server or the Oracle WebLogic Server clusters
12+
#
13+
#Prerequisite:
14+
#1.Create a directory which would be mounted to the container
15+
#2.Create "custom_mod_wl_ohs.conf" as per your environment by referring to mod_wl_ohs.conf sample file and OHS document above
16+
#3.Place the "custom_mod_wl_ohs.conf" inside the directory which will be mounted in the container
17+
#4.During OHS container creation mount the directory which contains the "custom_mod_wl_ohs.conf"
18+
#
19+
# Note :
20+
# If custom_mod_wl_ohs.conf is not provided, WebLogic Server Proxy Plug-In will not be configured. But OHS server will be still running.
21+
# User may login to OHS container and manually configure the WebLogic Server Proxy Plug-In later
22+
#
23+
#MW_HOME - The root directory of your OHS standalone install
24+
#DOMAIN_NAME - Env Value set by Dockerfile , default is "ohsDOmain"
25+
#OHS_COMPONENT_NAME - Env Value set by Dockerfile , default is "ohs1"
26+
#*************************************************************************
27+
echo "ORACLE_HOME=${ORACLE_HOME:?"Please set MW_HOME"}"
28+
echo "DOMAIN_NAME=${DOMAIN_NAME:?"Please set DOMAIN_NAME"}"
29+
echo "OHS_COMPONENT_NAME=${OHS_COMPONENT_NAME:?"Please set OHS_COMPONENT_NAME"}"
30+
31+
DOMAIN_HOME=${ORACLE_HOME}/user_projects/domains/${DOMAIN_NAME}
32+
INSTANCE_CONFIG_HOME=$DOMAIN_HOME/config/fmwconfig/components/OHS/${OHS_COMPONENT_NAME}
33+
export INSTANCE_CONFIG_HOME
34+
echo "INSTANCE_CONFIG_DIR=${INSTANCE_CONFIG_HOME}"
35+
36+
#Search for the customized mod_wl_ohs.conf file
37+
modwlsconfigfile=`find / -name 'custom_mod_wl_ohs.conf' 2>&1 | grep -v 'Permission denied'`
38+
export modwlsconfigfile
39+
echo "MODWLSCONFIGFILE IS ${modwlsconfigfile}"
40+
41+
# Check and copy custom_mod_wl_ohs.conf to OHS Instance Home
42+
if [[ -n "${modwlsconfigfile/[ ]*\n/}" ]]; then
43+
cd ${INSTANCE_CONFIG_HOME} || exit
44+
mv mod_wl_ohs.conf mod_wl_ohs.conf.ORIGINAL
45+
echo "Copying ${modwlsconfigfile} to ${INSTANCE_CONFIG_HOME} "
46+
cp ${modwlsconfigfile} ${INSTANCE_CONFIG_HOME}/mod_wl_ohs.conf
47+
fi
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
#!/usr/bin/python
2+
#
3+
# Copyright (c) 2025 Oracle and/or its affiliates. All rights reserved.
4+
#
5+
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
6+
#
7+
# Create OHS Domain and OHS System component
8+
#
9+
# OHS Domain 'ohsDomain' (or anything defined under DOMAIN_NAME) to be created inside the Docker image for OHS
10+
# OHS System Component "ohs1" (Or anything defined under OHS_COMPONENT_NAME)to be created inside the Docker image for OHS
11+
#
12+
13+
# ==============================================
14+
import os, sys
15+
#admin_port = (os.environ.get("ADMIN_PORT", "7001"))
16+
ohs_http_port = (os.environ.get("OHS_LISTEN_PORT", "7777"))
17+
ohs_ssl_port = (os.environ.get("OHS_SSL_PORT", "3333"))
18+
ohs_comp_name = os.environ.get("OHS_COMPONENT_NAME", "ohs1")
19+
domain_name = os.environ.get("DOMAIN_NAME", "ohsDomain")
20+
domain_path = os.environ.get("DOMAIN_HOME", "/u01/oracle/user_projects/domains/ohsDomain")
21+
22+
print('domain_name : [%s]' % domain_name);
23+
print('domain_path : [%s]' % domain_path);
24+
print('ohs_comp_name : [%s]' % ohs_comp_name);
25+
26+
# Select OHS standalone template
27+
# ==============================================
28+
setTopologyProfile('Compact')
29+
selectTemplate('Oracle HTTP Server (Standalone)')
30+
loadTemplates()
31+
showTemplates()
32+
# Create OHS System Component by the name ohs1, Configure OHS Listen Port and SSL Port
33+
# ======================================================================
34+
cd('/')
35+
cd('SystemComponent/' + ohs_comp_name)
36+
set('ComponentType','OHS')
37+
cd('/')
38+
cd('OHS/' + ohs_comp_name)
39+
set('ListenAddress','')
40+
set('ListenPort', ohs_http_port)
41+
set('SSLListenPort', ohs_ssl_port)
42+
# Set NodeManager user name and password
43+
# ======================================================================
44+
cd('/')
45+
create('sc', 'SecurityConfiguration')
46+
cd('SecurityConfiguration/sc')
47+
set('NodeManagerUsername', username)
48+
set('NodeManagerPasswordEncrypted', password)
49+
#set('NodeManagerUsername','weblogic')
50+
#set('NodeManagerPasswordEncrypted','welcome1')
51+
setOption('NodeManagerType','PerDomainNodeManager')
52+
setOption('OverwriteDomain', 'true')
53+
#Write Domain, close template and exit
54+
# ======================================================================
55+
#writeDomain(r'/u01/oracle/user_projects/domains/ohsDomain')
56+
writeDomain(domain_path)
57+
dumpStack()
58+
closeTemplate()
59+
exit()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html PUBLIC "-//IETF//DTD HTML 2.0//EN">
2+
<HTML>
3+
<HEAD>
4+
<TITLE>
5+
Oracle HHTP Server Test
6+
</TITLE>
7+
</HEAD>
8+
<BODY>
9+
<H1>Oracle HTTP Server Test</H1>
10+
<P>Welcome to Hello World!!! Test is successful</P>
11+
</BODY>
12+
</HTML>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Copyright (c) 2025 Oracle and/or its affiliates. All rights reserved.
2+
#
3+
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
4+
#
5+
#***************************************************************
6+
# NOTE : This is a sample template to configure mod_weblogic.
7+
8+
#
9+
#
10+
#Refer to OHS documentation for more details and examples
11+
#Section 2.4 @ https://docs.oracle.com/en/middleware/fusion-middleware/web-tier/14.1.2/develop-plugin/oracle.html#GUID-A463B189-DF47-4932-8B96-FD4F5FEC8D56
12+
#*************************************************************************
13+
LoadModule weblogic_module "/u01/oracle/ohs/modules/mod_wl_ohs.so"
14+
15+
<IfModule mod_weblogic.c>
16+
WebLogicHost WEBLOGIC_HOST
17+
WebLogicPort WEBLOGIC_PORT
18+
</IfModule>
19+
20+
# Directive for weblogic admin Console deployed on Weblogic Admin Server
21+
<Location /console>
22+
SetHandler weblogic-handler
23+
WebLogicHost WEBLOGIC_HOST
24+
WeblogicPort WEBLOGIC_PORT
25+
</Location>
26+
27+
# Directive for all application deployed on weblogic cluster with /weblogic prepath
28+
#All application deployed on cluster can be accessed via http://myhost:7777/weblogic/application_end_url
29+
<Location /weblogic>
30+
WLSRequest On
31+
WebLogicCluster WEBLOGIC_CLUSTER
32+
PathTrim /weblogic
33+
</Location>
34+
35+
#Directive for application deployed on single or set of Managed Servers (and NOT on weblogic cluster)
36+
#<Location /application_end_url>
37+
#SetHandler weblogic-handler
38+
#WebLogicHost ManagedServer_HOST
39+
#WeblogicPort ManagedServer_PORT
40+
#</Location>

0 commit comments

Comments
 (0)