Skip to content

Commit

Permalink
Correct README and make changes to make MS listenaddress blank (oracl…
Browse files Browse the repository at this point in the history
  • Loading branch information
mriccell authored and Djelibeybi committed May 9, 2018
1 parent 5384747 commit 4b0ff01
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 deletions.
5 changes: 4 additions & 1 deletion OracleWebLogic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,5 +116,8 @@ To download and run Oracle JDK regardless of inside or outside a Docker containe

All scripts and files hosted in this project and GitHub [docker/OracleWebLogic](./) repository required to build the Docker images are, unless otherwise noted, released under [UPL 1.0](https://oss.oracle.com/licenses/upl/) license.

## Customer Support
We support WebLogic Server in certified Docker containers, please read our Support statement. For additional details on the most current WebLogic Server supported configurations please refer to [Oracle Fusion Middleware Certification Pages] (http://www.oracle.com/technetwork/middleware/ias/oracleas-supported-virtualization-089265.html)

## Copyright
Copyright (c) 2014-2017 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2014-2018 Oracle and/or its affiliates. All rights reserved.
10 changes: 3 additions & 7 deletions OracleWebLogic/dockerfiles/12.2.1.3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ To try a sample of a WebLogic Server image with a base domain configured, follow

**NOTE** To set the DOMAIN_NAME, you must set both DOMAIN_NAME and DOMAIN_HOME.

$ docker run -d -e ADMIN_USERNAME=weblogic -e ADMIN_PASSWORD=welcome1 -e DOMAIN_HOME=/u01/oracle/user_projects/domains/abc_domain -e DOMAIN_NAME=abc_domain oracle/weblogic:12.2.1.3-developer
$ docker run -d -p 7001:7001 -e ADMIN_USERNAME=weblogic -e ADMIN_PASSWORD=welcome1 -e DOMAIN_HOME=/u01/oracle/user_projects/domains/abc_domain -e DOMAIN_NAME=abc_domain oracle/weblogic:12.2.1.3-developer

4. Run the administration console

Expand All @@ -99,7 +99,7 @@ To try a sample of a WebLogic Server image with a base domain configured, follow

## Choose your Oracle WebLogic Server Distribution
This project hosts two to three configurations (depending on Oracle WebLogic Server version) for building Docker images with WebLogic Server 12c.
This project hosts two configurations (depending on Oracle WebLogic Server version) for building Docker images with WebLogic Server 12c.

* Quick Install Developer Distribution

Expand All @@ -109,9 +109,5 @@ This project hosts two to three configurations (depending on Oracle WebLogic Ser

- For more information on the Oracle WebLogic Server 12cR2 Generic Full Distribution, visit [WebLogic Server 12.2.1.3 Documentation](http://docs.oracle.com/middleware/12213/wls/index.html).

* Fusion Middleware Infrastructure Distribution

- For more information on the Oracle WebLogic Server 12cR2 Infrastructure Full Distribution, visit [WebLogic Server 12.2.1.3 Infrastructure Documentation](https://docs.oracle.com/middleware/12213/core/INFIN/).

## Copyright
Copyright (c) 2014-2017 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2014-2018 Oracle and/or its affiliates. All rights reserved.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ def randomName():
cluster_name = os.environ.get("CLUSTER_NAME", "DockerCluster")

# ManagedServer details
msinternal = socket.gethostbyname(hostname)
#msinternal = socket.gethostbyname(hostname)
msinternal = ''
msname = os.environ.get('MS_NAME', 'ManagedServer-%s@%s' % (randomName(), hostname))
mshost = os.environ.get('MS_HOST', msinternal)
msport = os.environ.get('MS_PORT', '7002')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@ def randomName():


# ManagedServer details
msinternal = socket.gethostbyname(hostname)
#msinternal = socket.gethostbyname(hostname)
msname = os.environ.get('MS_NAME', 'ManagedServer-%s@%s' % (randomName(), hostname))
nmname = os.environ.get('NM_NAME', 'Machine-' + hostname)
mshost = os.environ.get('MS_HOST', msinternal)
mshost = os.environ.get('MS_HOST', '')
#mshost = os.environ.get('MS_HOST', msinternal)
msport = os.environ.get('MS_PORT', ms_port)
memargs = os.environ.get('USER_MEM_ARGS', '')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ def randomName():


# ManagedServer details
msinternal = socket.gethostbyname(hostname)
# msinternal = socket.gethostbyname(hostname)
msinternal = ''
msname = os.environ.get('MS_NAME', 'ManagedServer-%s@%s' % (randomName(), hostname))
nmname = os.environ.get('NM_NAME', 'Machine-' + hostname)
mshost = os.environ.get('MS_HOST', msinternal)
Expand Down

0 comments on commit 4b0ff01

Please sign in to comment.