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

This commit is contained in:
Tomoya Fujita 2024-09-04 11:45:09 -07:00 committed by GitHub
parent f36ebfb478
commit 133770a548
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
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
### 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