Orthanc for Windows版PACS服务器安装教程

发布时间:2026/7/24 20:10:07
Orthanc for Windows版PACS服务器安装教程 window64位版下载地址Orthanc downloadsDownloads that are available from the Orthanc project.https://orthanc.uclouvain.be/downloads/windows-64/installers/index.htmlOHIF顶级开源WEB影像浏览器相关地址https://viewer.ohif.org/https://v3p10.docs.ohif.org/https://github.com/OHIF/Viewers 多次尝试才能打开Orthanc自带了OHIF影像浏览器不用单独安装了解一下即可。开始安装OrthancOrthanc安装OrthancInstaller-Win64-26.6.1.exe设置Dicom文件上传保存路径安装完成后多了一个服务打开本地浏览器http://127.0.0.1:8042/app/explorer.html配置MYSQL8.48.4一直登录不上不能自动建表换成mysql8.0就好了-- 创建数据库utf8mb4完整支持中文 CREATE DATABASE orthanc CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; -- 不需要单独用户则不创建 -- 创建本地专用用户 CREATE USER orthanclocalhost IDENTIFIED BY Orthanc123456; -- 授权全权限 GRANT ALL PRIVILEGES ON orthanc.* TO orthanclocalhost; FLUSH PRIVILEGES; exit;配置mysql.json后重启Orthanc服务就会自动建表无需要其他改动。自动建的表上传一些影像就可以在线看了。多窗位联动三维重建功能多种web阅片方式使用OHIF列表方式查看http://127.0.0.1:8042/ohif/MyOrthanc中文浏览界面http://127.0.0.1:8042/ui/app/REST API of Orthanc REST API of Orthanc — Orthanc Book documentation$ curl http://localhost:8042/patients $ curl http://localhost:8042/studies $ curl http://localhost:8042/series $ curl http://localhost:8042/instances官方配置文档Advanced Storage Plugin — Orthanc Book documentationhttps://orthanc.uclouvain.be/book/plugins/advanced-storage.html增加插件扩展存储自定义文件保存路径和文件名称扩展DLL下载地址​​​​​​​Orthanc downloadsDownloads that are available from the Orthanc project.https://orthanc.uclouvain.be/downloads/windows-64/orthanc-advanced-storage/index.html