Troubleshooting

circle-info

If your questions are not answered on this page or within the FAQ, please submit a support ticketarrow-up-right and our support team will respond as soon as possible!

chevron-rightMissing or Incorrect Configuration Filehashtag

Solution: Ensure the config.yaml file is created and placed in the correct directory. By default, the Floating Server looks for the configuration file in the config directory located in the same folder as the executable. If the file is located elsewhere, use the -config argument when starting the server:

./floating-server.exe -config /path/to/config.yaml

Make sure the config.yaml file is correctly formatted, and all required fields (like the database type and API keys) are present.

chevron-rightFloating Server Not Startinghashtag

Solution: Ensure the server is running with sufficient permissions. On Linux/macOS, you may need to give execution rights to the binary:

chmod +x floating-server
chevron-rightUnable to Connect to Redishashtag

Solution: Verify that Redis is running and that the connection details in the config.yaml file are correct. Make sure the Redis instance is accessible from the machine running the Floating Server:

database:
  type: redis
  addresses:
    - localhost:6379

If Redis is running on a different machine, ensure the correct IP address and port are provided.

chevron-rightFloating Server Port Not Availablehashtag

Solution: If the Floating Server is not accessible on the specified port, ensure that the port is not already in use by another application. You can specify a different port in the config.yaml file:

port: 8080

Make sure any firewall or security settings allow incoming connections on the chosen port.

chevron-rightLogs Not Generatedhashtag

Solution: Ensure the log file location is correctly specified in the config.yaml file. The default log file location is logs/floating-server.log, but you can specify a custom path:

logFile: /path/to/log/file.log

Verify that the directory for the log file exists and that the server has write permissions for that directory.

chevron-rightFile-Based Database Not Workinghashtag

Solution: If you're using a file-based database and encountering issues, ensure the config.yaml file is set up correctly:

Make sure the specified directory for storing the database files exists and has the appropriate permissions.

Last updated

Was this helpful?