FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. Tags
    3. failure
    Log in to post
    • All categories
    • danD

      Solved Failure when starting FusionAuth in Docker on Mac M4

      Q&A
      • mac failure java • • dan
      2
      0
      Votes
      2
      Posts
      772
      Views

      danD

      This is due to a bug in the openjdk java library that the docker image uses. You can learn more about the bug here and track our fix (which looks like upgrading the java image our docker file users) by following this bug.

      Until then, the workaround is to pass this java argument at start time:

      -XX:UseSVE=0

      This argument disables the use of the SVE extension, which is provides "better data parallelism for HPC and ML".

      You can do that with the FUSIONAUTH_APP_ADDITIONAL_JAVA_ARGS environment variable in your Dockerfile. Here's an example:

      fusionauth: # ... environment: # ... FUSIONAUTH_APP_ADDITIONAL_JAVA_ARGS: -XX:UseSVE=0
    • danD

      Seeing "A request to the search index has failed. This error is unexpected" and I can no longer login with google

      Q&A
      • search login failure google • • dan
      2
      0
      Votes
      2
      Posts
      1.2k
      Views

      danD

      Hmmm. Since you haven't made any changes and aren't seeing any other errors, can you try to reindex?

      Navigate to system and then re-index in the administrative user interface?

      That should solve the issue.