I am trying to open the Swagger UI of a Spring Boot application that is deployed to Oracle Cloud.
However, I’m getting a “Connection timed out” error across all browsers. I am using a MacBook with an M1 Pro chip. However, the application URL is opening fine on my Windows.
When I tried to figure out what was going on with the curl command:
`curl -k https://68.233.117.127:8080/
curl: (28) SSL connection timeout
`
When I run the curl command with verbose:
curl -v -k https://68.233.117.127:8080/
* Trying 68.233.117.127:8080...
* Connected to 68.233.117.127 (68.233.117.127) port 8080
* ALPN: curl offers h2,http/1.1
* (304) (OUT), TLS handshake, Client hello (1):
It is stuck on the TLS handshake, client hello step.
When I use netcal to figure out if the port is open and listening:
nc -vz 68.233.117.127 8080
Connection to 68.233.117.127 port 8080 [tcp/http-alt] succeeded!
Can someone please explain what’s going on and how I can fix this?
Vidhyakshaya Kannan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.