yeonghoon.kim

  • 게시판
  • 갤러리

DGX Ollama 구축

김영훈 2026.02.11 08:44 조회 수 : 183

EdgeXpert DGX Spark에 Ollama 올려서 LLM 서버로 쓰려고 설정.

하드웨어 확인.

nvidia-smi

NVIDIA GB10
CUDA Version: 13.0
Total Memory: 119.6 GiB
Available Memory: 115.7 GiB

lscpu

Architecture: aarch64
CPU: Cortex-X925 + Cortex-A725
CPU cores: 20

lsblk

NVMe: 931.5G
OS: Ubuntu 22.04 LTS

Docker 권한 설정.

sudo usermod -aG docker ioniere
newgrp docker

docker ps

Ollama 설치.

curl -fsSL https://ollama.ai/install.sh | sh

설치 로그.

>>> Installing ollama to /usr/local
>>> Downloading ollama-linux-arm64.tar.zst
>>> Creating ollama user...
>>> Adding ollama user to render group...
>>> NVIDIA GPU installed.
>>> The Ollama API is now available at 127.0.0.1:11434

처음 실행.

nohup ollama serve &

로그.

time=2026-02-10T19:12:42.439+09:00 level=INFO msg="Listening on 127.0.0.1:11434"
time=2026-02-10T19:12:43.294+09:00 level=INFO msg="inference compute" 
  id=GPU-4b3a0335-7002-d8d7-4b25-e60076f87725 
  description="NVIDIA GB10" 
  total="119.6 GiB" 
  available="115.5 GiB"

모델 다운로드.

ollama pull mistral

pulling manifest
pulling f5074b1221da: 100% ▕█████████████████████████▏ 4.4 GB
verifying sha256 digest
writing manifest
success

로컬 테스트.

ollama run mistral

API 테스트.

curl http://127.0.0.1:11434/api/generate -d '{
  "model": "mistral",
  "prompt": "Hello, how are you?",
  "stream": false
}'

응답.

{
  "model": "mistral",
  "response": "I'm an artificial intelligence and don't have feelings, but I'm here to help you!",
  "total_duration": 7128211507,
  "load_duration": 13630859,
  "prompt_eval_count": 10,
  "eval_count": 65
}

기본 상태에서는 127.0.0.1에만 붙어서 외부 접근이 안 됨.

0.0.0.0으로 다시 실행.

kill %1

nohup env OLLAMA_HOST=0.0.0.0:11434 ollama serve > nohup.out 2>&1 &

로그.

time=2026-02-10T19:24:44.865+09:00 level=INFO msg="Listening on [::]:11434"

내부망 테스트.

curl http://192.168.200.100:11434/api/generate \
  -d '{"model":"mistral","prompt":"test","stream":false}'

모니터링.

watch nvidia-smi

ps aux | grep ollama

netstat -tlnp | grep 11434

일단 Mistral 7B부터 올림.

119.6GB VRAM이면 훨씬 큰 모델도 가능해 보임.


  • 추천 0

  • 비추천 0
이 게시물을
목록

댓글 0

번호 제목 글쓴이 날짜 조회 수
공지 2025 일본 여행 계획 김영훈 2024.10.10 4119
공지 현금, 저축, 투자, 지출, 예산, 보험 내역(2024-05-30) 김영훈 2024.03.10 3752
37 [바이브코딩 - 클로드] kospiAlarm 작업 메모 김영훈 2025.10.29 109
36 infra-base 기본 서버 설정 메모 김영훈 2026.01.20 171
35 임시 파킹 페이지 김영훈 2026.01.20 308
34 monitoring 설정 김영훈 2026.01.23 130
33 ollama-chatbot 테스트 메모 김영훈 2026.01.27 355
32 OpenVPN 구축 김영훈 2026.01.28 143
31 GitLab CI/CD 테스트 김영훈 2026.01.28 216
30 Traefik 설정 김영훈 2026.01.28 353
29 openclaw 구축 작업 노트 [2] 김영훈 2026.02.01 341
28 smtp-relay 설정 김영훈 2026.02.06 195
27 WAF honeypot 설정 김영훈 2026.02.07 104
26 OpenClaw cron regression 대응 김영훈 2026.02.08 186
» DGX Ollama 구축 김영훈 2026.02.11 183
24 원격 LLM 챗봇 테스트 김영훈 2026.02.11 140
23 Docker Ollama 트러블슈팅 김영훈 2026.02.11 128
22 GPU 모니터링 대시보드 구축 김영훈 2026.02.11 150
21 DGX Spark LLM 벤치마크 김영훈 2026.02.11 132
20 LLM 모델 선정 김영훈 2026.02.12 141
19 OpenClaw 모델 삭제 사고 김영훈 2026.02.13 114
18 ARM Kubernetes 구축 2 - VM 생성과 클러스터 설치 김영훈 2026.02.14 138
쓰기 태그
 첫 페이지 7 8 9 10 11 12 13 14 15 16 끝 페이지