Here's the thing you need to understand right away: Ollama itself doesn't have a built-in user management system. It's designed to be a simple, powerful tool for running LLMs locally. By default, it runs on
, meaning it only listens for requests from the same machine it's installed on.
To share it with other users on your network, you need to configure it to listen on all network interfaces. This is done by setting an environment variable called
to
. This tells Ollama to accept connections from any IP address on your network, not just
.
This is probably the most common setup for a shared server.