Unverified Commit 133770a5 authored by Tomoya Fujita's avatar Tomoya Fujita Committed by GitHub
Browse files

docs: add group to manual Linux isntructions and verify service is running (#6430)

parent f36ebfb4
...@@ -35,10 +35,11 @@ curl -fsSL https://ollama.com/download/ollama-linux-amd64-rocm.tgz | sudo tar zx ...@@ -35,10 +35,11 @@ curl -fsSL https://ollama.com/download/ollama-linux-amd64-rocm.tgz | sudo tar zx
### Adding Ollama as a startup service (recommended) ### Adding Ollama as a startup service (recommended)
Create a user for Ollama: Create a user and group for Ollama:
```bash ```bash
sudo useradd -r -s /bin/false -m -d /usr/share/ollama ollama sudo useradd -r -s /bin/false -U -m -d /usr/share/ollama ollama
sudo usermod -a -G ollama $(whoami)
``` ```
Create a service file in `/etc/systemd/system/ollama.service`: Create a service file in `/etc/systemd/system/ollama.service`:
...@@ -54,6 +55,7 @@ User=ollama ...@@ -54,6 +55,7 @@ User=ollama
Group=ollama Group=ollama
Restart=always Restart=always
RestartSec=3 RestartSec=3
Environment="PATH=$PATH"
[Install] [Install]
WantedBy=default.target WantedBy=default.target
...@@ -83,10 +85,11 @@ Make sure to install ROCm v6 ...@@ -83,10 +85,11 @@ Make sure to install ROCm v6
### Start Ollama ### Start Ollama
Start Ollama using `systemd`: Start Ollama and verify it is running:
```bash ```bash
sudo systemctl start ollama sudo systemctl start ollama
sudo systemctl status ollama
``` ```
## Update ## Update
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment