Skip to content

Fixing Timeout Errors

When hosting a server from home, you may notice that some players get kicked due to a timeout. This happens when the server is unable to provide data to the player fast enough.

  • Use Ethernet: WiFi is often the culprit for poor internet performance. If possible, use an Ethernet cable.
  • Line of Sight / Distance: If Ethernet is not an option, ensure you are as close to your router or access point as possible.
  • Clear Bandwidth: Turn off other devices on your WiFi that may be consuming bandwidth.

In your server.properties file, there is a variable named view-distance. By default, view-distance=10. This tells your server to send world data within a 10-chunk radius.

If you are experiencing timeouts, try reducing this value:

  1. Open server.properties.
  2. Set view-distance=3.
  3. Save the file.
  4. Restart your Minecraft server for the changes to take effect.

You can gradually increase this value (for example, 4, 5, 6) until you find a balance between performance and visibility before timeout issues reappear.