FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. xan
    3. Topics
    X
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 18
    • Best 5
    • Controversial 0
    • Groups 0

    Topics created by xan

    • X

      Problems logging in user through C# API call

      Q&A
      • • • xan
      16
      0
      Votes
      16
      Posts
      6.4k
      Views

      B

      @xan said in Problems logging in user through C# API call:

      when I do "http://localhost:5000", currently it just gets a "localhost refused to connect."?

      Generally this happens when the service running on your localhost has some problem resolving the request. If you have access to logs, please see logs for more details on the error. Also, make sure the application interface, server, and services are running. There are many situations that might trigger “this site can't be reached” error in browsers. Sometimes the server is still running but the interface application is closed or the database is down. If your application interface and server is up but a dependent service is down then restart your computer/server and restart services. Make sure the app is bound to localhost. It may just be bound to an individual interface. netstat -na will give you the clues you need. Run a port scan on your computer and make sure the port is opened.

      The problem may happens for failing on DNS lookup . DNS is that network address that translates the website name to its internet address. Most often it causes for not getting the internet connection or misconfigured internet or network settings. Another reason could be the firewall preventing Google Chrome to load the webpage. However, other reasons, such as insufficient permissions or the Apache web server not running properly might also cause the error.

    • X

      Can't connect to web interface.

      General Discussion
      • docker user management • • xan
      3
      0
      Votes
      3
      Posts
      2.5k
      Views

      danD

      How much memory are you giving to the java process?

      You can also switch to the database search engine and see if removing ES resolves the issue. At that point it might be a resource issue.

      https://fusionauth.io/docs/v1/tech/tutorials/switch-search-engines/ has instructions on how to change these.

    • X

      Trying to install into docker, but getting permission error.

      General Discussion
      • • • xan
      6
      0
      Votes
      6
      Posts
      4.5k
      Views

      X

      For anyone interested I got this running by one installing docker-compose from the actual docker tutorial on how to do it, and then giving docker permission to run commands as root. There is a tutorial on how to do it on. On top of those I moved it to a server with 2gb of ram, as I noticed a few out of memory errors when it was trying to start up.
      https://docs.docker.com/engine/install/linux-postinstall/