************************************************************************************************
* Description: Disable SSL of OID collocated service HTTPS port via Fusion Middleware OEM MBean
* Date: 16:36 PM EST, 02/26/2021                         
************************************************************************************************

		 
<1> After installing Oracle Internet Service as Collocated with Fusion Middleware, then the Service Manager Console will be using same port as Domain Admin Server:
     |
     |__ o. Then, via WebLogic Script Tool, to initial OID instance with HTTP & HTTPS ports as below:
     |
     |        $ $DOMAIN_HOME/oracle_common/common/bin/wlst.sh
     |        WLST> connect('weblogic', 'password', 't3://localhost:7001') 
     |        WLST> oid_setup(orcladminPassword='password', odsPassword='password', realmDN='dc=emeralit,dc=com', host='admin.emeralit.com', port=5901, sslPort=5902)
     |
     |__ o. CAUTION: by so far research, 12.2.1.3.0 OID instance coud not be deployed on a Managed Server within a WebLogic Domain, and has to run in Stand Alone mode.		 
     |
     |__ o. Normally, one managed server got assigned with 2 ports, one is for HTTP, and the other one is for HTTPS SSL.
	 
	 
	 

	 
<2> The SSL port for an OID instance, can be disabled via WebLogic MBean on OEM:
     |
     |__ o. Digging to the very end, each WebLogic Managed Server is just a Java process, known as Java Virtual Machine.
     |
     |__ o. A managed bean (MBean) is a Java bean that provides a Java Management Extensions (JMX) interface. 
            JMX is the J2EE solution for monitoring and managing resources on a network. 
            Like SNMP and other management standards, JMX is a public specification and many vendors of commonly used monitoring products support it.


			

			
<3> Logon into WebLogic OEM, disable SSL for HTTPS port, and restart OID instance: 			
     |
     |__ o. WebLogic Domain => System MBean Browser => Configuration MBeans => oracle.old.mbeans => OIDInstance.oid1.sslport => sslport1 => SSLEnabled: false

	 
             	 
	 
	 
			
			
			 
Reference:
     |
     |__ o. WebLogic Server MBean - https://docs.oracle.com/cd/E13222_01/wls/docs90/wlsmbeanref/core/index.html
	 

	

	

Your Comments