FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. jgerman
    3. Posts
    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 3
    • Best 0
    • Controversial 0
    • Groups 0

    Posts made by jgerman

    • RE: Runtime exceptions with SSL enabled

      @mark-robustelli Yes, the configuration is using the SSL private key and certificate properties through environment variables with SSL enabled. Specifically the FUSIONAUTH_APP_HTTPS_PRIVATE_KEY, FUSIONAUTH_APP_HTTPS_CERTIFICATE, and FUSIONAUTH_APP_HTTPS_ENABLED environment variables.

      Large API or admin call wise, the most obvious thing I've seen is going into the admin application and just try to edit or create a tenant, you don't have to change anything if editing, and try to hit save. Creating/editing a tenant or creating/editing an API key at minimum are the most obvious places I've consistently seen the issue. API calls for these same functions, tenant add/edit and API key add/edit, have the same issue.

      I haven't done a lot of parallel request testing but the application for everything else still seems ok while these specific requests are erroring. These large calls will fail and an error will be in the container logs but everything else stays up and continues to run.

      Let me know if I can provide more information.

      posted in General Discussion
      J
      jgerman
    • RE: Runtime exceptions with SSL enabled

      @mark-robustelli That is coming from the container logs. We see these in the logs when the large API call or admin call is made. The server gives back an empty response for these calls. The admin UI just displays a blank page when these large calls are made. I'm happy to provide anything else that would be helpful.

      posted in General Discussion
      J
      jgerman
    • Runtime exceptions with SSL enabled

      I have been using the containerized FusionAuth application and am having issues with using it with SSL enabled. When enabled and accessing it via HTTPS I am able to login, add users, and do basic admin tasks using the admin application however certain functionality is not working. For instance, adds or edits of tenants or API keys all throw exceptions. Calling the API for these tasks results in the same exception. If you access it via HTTP only, non SSL, it works without issue however I require SSL to the application. The exception stack trace is:

      ERROR io.fusionauth.http.server.HTTPServerThread - An exception was thrown during processing
      java.lang.IllegalStateException: A buffer overflow is not expected during an unwrap operation. This occurs because the preamble or body buffers are too small. Increase their sizes to avoid this issue.
      at io.fusionauth.http.server.HTTPS11Processor.read(HTTPS11Processor.java:191)
      at io.fusionauth.http.server.HTTPServerThread.read(HTTPServerThread.java:348)
      at io.fusionauth.http.server.HTTPServerThread.run(HTTPServerThread.java:176)
      

      To configure SSL, I have used both the file based and raw content environment variables to specify the certificate and private key. Both have the same result of the above exception when SSL is enabled. This is also noted in a similar post here but it had no resolution besides not using SSL.

      How have people configured this to get it working without the exceptions above?

      posted in General Discussion
      J
      jgerman