FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. Categories
    3. Q&A
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • danD

      What can I migrate from a different system

      migration migrate users users • • dan
      2
      0
      Votes
      2
      Posts
      1.1k
      Views

      danD

      You can migrate all of your user data (store any non standard info in user.data), their roles, groups, application association, refresh tokens (so that someone using a TV app, for example, won't have to login again) and their password hashes.

      Please see the FusionAuth migration guide for more.

    • S

      This topic is deleted!

      • • sy12250
      1
      0
      Votes
      1
      Posts
      3
      Views

      No one has replied

    • danD

      Sendgrid rejecting our FusionAuth email requests

      email sendgrid • • dan
      2
      0
      Votes
      2
      Posts
      1.5k
      Views

      danD

      Does SendGrid indicate why they are rejecting requests? In my experience, this is generally due to invalid creds, or a “From address” with a domain that does not match your SendGrid account.

      So if a default template is being used with a no-reply@fusionauth.io address you may see a runtime error such as a rejected SMTP request.

      Otherwise I'd make sure the IP address is in any whitelists, or share anything else that sendgrid logs.

    • X

      This topic is deleted!

      • • xan
      1
      0
      Votes
      1
      Posts
      2
      Views

      No one has replied

    • I

      What are the ways to login to multiple applications ?

      • • IzioDev
      2
      1
      Votes
      2
      Posts
      2.1k
      Views

      danD

      Hiya,

      I think the best path forward would be for you to use the populate JWT lambda.

      In that you can examine the user, their registrations to various FusionAuth applications, and modify the delivered JWT. So you could iterate the registrations and build a JWT claim called supportedApps with a list of your apps. You'd have to keep all the lambdas in sync across every application, but luckily you can do so with the FusionAuth API.

      Then in any APIs your SPA or native apps call, they can look at the supportedApps claim. If the API supports that company, it can respond.

      I'm not sure exactly why you are separating these companies out as FusionAuth applications if one login gets you access to all of them, though. You could map this within one application using roles too, which is a different set of tradeoffs.

    • I

      CentOS 8 systemctl fusionauth-api service

      • • infosec
      2
      0
      Votes
      2
      Posts
      475
      Views

      danD

      @infosec welcome to the FusionAuth community!

      This seems like a bug in our rpms. Can you please file a bug here: https://github.com/fusionauth/fusionauth-issues/issues

      Feel free to reference this forum post.

      Thanks so much!

    • danD

      Can you use the same template for the forgot password and send password emails?

      email templates • • dan
      2
      0
      Votes
      2
      Posts
      1.7k
      Views

      danD

      Since both APIs are technically the same, is there a way to use the email template defined for the Setup Password with the Forgot Password API?

      Yes. Navigate to 'Tenants -> your tenant -> Email' and you can set 'Setup password' and 'Forgot password' to be the same template.

      There may be template variable differences, please consult the documentation and ensure you are checking for existence before you rely on them:

      https://fusionauth.io/docs/v1/tech/email-templates/email-templates/#setup-password

      https://fusionauth.io/docs/v1/tech/email-templates/email-templates/#change-password

    • danD

      Which countries does FusionAuth cloud deploy to?

      cloud country • • dan
      2
      0
      Votes
      2
      Posts
      4.1k
      Views

      danD

      It is an ever changing list, but the easiest way to see it is to go to the FusionAuth pricing calculator and select the region to see what countries are currently supported.

      If you would like us to support a country not currently on that list, please contact us with more details.

    • danD

      Do you support peering for low latency environments with FusionAuth cloud?

      cloud latency • • dan
      2
      0
      Votes
      2
      Posts
      1.6k
      Views

      danD

      Peering is not an option at the moment. If you have a use case for this, please file a GitHub issue with more details about how you'd like to see the feature implemented.

      Another option is to self host and run FusionAuth within your cloud network infrastructure. If you'd like to do that and still have help from the FusionAuth team, consider a plan with a support contract.

    • danD

      Deploying to Saudi Arabia?

      cloud • • dan
      2
      0
      Votes
      2
      Posts
      912
      Views

      danD

      We support deploying to Bahrain. Not sure if you are looking for best latency, but that deployment would be the closest geographically.

    • danD

      Auth specific scaling challenges

      • • dan
      1
      0
      Votes
      1
      Posts
      374
      Views

      No one has replied

    • M

      AWS Elastic Search Basic Auth

      • • matt 0
      2
      0
      Votes
      2
      Posts
      825
      Views

      danD

      Welcome to the FusionAuth community @matt-0 !

      Hmmm.

      search.servers=https://user:pass@es.fusionauth.io

      works for me. (But I'm running both ES and FA locally.)

      Is https://username:password@awssearchurl.com the real value in your system, or did you swap it out?

      Also, what version of java are you running?

    • danD

      Are the post and get forms of the user search API equivalent?

      database user search java client • • dan
      2
      0
      Votes
      2
      Posts
      2.9k
      Views

      danD

      Yes, they are equivalent. Building this JSON:

      { "search": { "queryString": "fusionauth.io" } }

      and posting it is equivalent to a GET with queryString=fusionauth.io.

    • R

      This topic is deleted!

      • • ryanboyer612
      1
      0
      Votes
      1
      Posts
      2
      Views

      No one has replied

    • danD

      I have a question about licensing. Where should I look

      license • • dan
      2
      0
      Votes
      2
      Posts
      1.5k
      Views

      danD

      We have a license FAQ.

      If course, if your questions aren't answered there, please feel free to send us an email.

    • danD

      Searching for users with the java client

      java client search users • • dan
      2
      0
      Votes
      2
      Posts
      5.8k
      Views

      danD

      Looking at https://github.com/FusionAuth/fusionauth-java-client/blob/master/src/main/java/io/fusionauth/client/FusionAuthClient.java#L3256

      It appears there is no way to search using the Java client that uses a GET, only a POST. However, you can still provide the queryString in the JSON and it will be equivalent to the GET request.

      Building this JSON:

      { "search": { "queryString": "fusionauth.io" } }

      Is equivalent to queryString=fusionauth.io.

      Hope that helps.

    • danD

      Can I find all users by tenant?

      tenant search users • • dan
      2
      0
      Votes
      2
      Posts
      1.9k
      Views

      danD

      Try clicking on the Advanced section on the User Search page and see you find what you're looking for.

      Or search like this tenantId:9d92ca33-bc7b-4d13-acd7-f7dc06038396 where 9d92ca33-bc7b-4d13-acd7-f7dc06038396 is your tenantId.

      Please note that this is an example for the elastic search search engine. With the database search engine, you can only search for the fields as documented in the API. As of this post, those are:

      firstName lastName fullName email username
    • danD

      Switching databases from mysql to postgresql

      mysql postgres migration • • dan
      2
      0
      Votes
      2
      Posts
      2.9k
      Views

      danD

      There is no easy way to do this. You'd have to migrate your configuration, your users and your DNS (if you are standing up a separate system).

      If you have all your configuration as scripts, that should be easy to migrate, otherwise you need to move things over manually.

      You could probably script a retrieve and then add of all the configuration, but there is no 'export all configuration' option.

      For your users, you could do a database dump to get the hashes and do a bulk import. Or if you have developer edition you could set up a slow migration using connectors. The user migration process is broadly documented here: https://fusionauth.io/docs/v1/tech/guides/migration/

      DNS migration is like any other DNS migration.

    • H

      Is it possible to set the UI time display to European standard (dd/mm/yyyy)?

      user-interface configuration dates • • hd_steve
      3
      0
      Votes
      3
      Posts
      4.0k
      Views

      danD

      Hiya @hd_steve !

      You can change the user's locale and the date format should change in the FusionAuth administrative user interface. More details here: https://fusionauth.io/community/forum/topic/718/how-do-i-change-the-localisation-timezone-for-the-fusionauth-ui?_=1614788141466

      Let me know if that answers your question, please.

      Thanks,
      Dan

    • S

      Email user on failed authentication

      • • stuart.auld
      2
      0
      Votes
      2
      Posts
      537
      Views

      danD

      hi @stuart-auld

      Can you please share more of your configuration? How is the user action configured?

      This may be a documentation issue or a bug, but I'd love to learn more.

      Thanks,
      Dan