Nilay Panchal
Nilay Panchal

Reputation: 571

APEX with Customer managed ORDS error on Autonomous Database : SSL received a record that exceeded the maximum permissible length

I want to connect to APEX built on Autonomous Database in the same compartment, After following the steps below to set up Customer Managed ORDS on the compute instance,

https://docs.oracle.com/en/database/oracle/oracle-rest-data-services/20.2/aelig/installing-and-configuring-customer-managed-ords-autonomous-database.html

I see the following error when connecting with a browser:

#curl  https://158.101.65.62:8443/ords/f?p=100 curl: (35) SSL received a record that exceeded the maximum permissible length.

How can this error be resolved?

Upvotes: 0

Views: 396

Answers (1)

Nilay Panchal
Nilay Panchal

Reputation: 571

This issue on Autonomous DB with APEX and customer managed ORDs can be resolved by changing jetty.port to jetty.secure.port in the standalone.properties file as described in the documented steps you are following. eg:

#jetty.port = 8443  
jetty.secure.port = 8443

Upvotes: 0

Related Questions