Orthanc 编译安装
一、系统版本
服务器版本:Ubuntu 18.04.6 LTS
Orthanc版本:1.9.7
? 看官方手册,官方在Ubuntu/Debian系统源提供了预编译好的安装包,本来根据手册文档,使用 apt-get install 命令进行Orthanc安装,在后面安装 orthanc-mysql 插件的时候,发现在Ubuntu18中没有提供与编译好的 orthanc-mysql 插件,只有在20版之后的Ubuntu才有提供,所有就索性自己下载源码包编译安装。
二、搭建
1. 编译orthanc-server:
在官网https://www.orthanc-server.com/download.php下载源码包Orthanc-1.9.7.tar.gz,将其放在自定义系统目录中,如下:
mkdir -p /data/orthanc
cd /data/orthanc
tar -zxvf Orthanc-1.9.7.tar.gz
为系统安装依赖环境,为后续编译安装做准备:
sudo apt-get update
sudo apt-get install build-essential unzip cmake mercurial patch \
uuid-dev libcurl4-openssl-dev liblua5.3-dev \
libgtest-dev libpng-dev libsqlite3-dev libssl-dev \
zlib1g-dev libdcmtk-dev libjpeg-dev python \
libboost-all-dev libwrap0-dev \
libcharls-dev libjsoncpp-dev libpugixml-dev locales
创建一个单独的目录存放编译文件,注意:编译目录和源码目录不要是同一个,否则会导致后面出错,需重新编译:
mkdir -p /data/orthanc/Build
cd /data/orthanc/Build
cmake -DALLOW_DOWNLOADS=ON \
-DUSE_GOOGLE_TEST_DEBIAN_PACKAGE=ON \
-DUSE_SYSTEM_CIVETWEB=OFF \
-DDCMTK_LIBRARIES=dcmjpls \
-DCMAKE_BUILD_TYPE=Release \
/data/orthanc/Orthanc-1.9.7/OrthancServer/
make
2. 编译 DICOMWeb插件 :
在官网https://www.orthanc-server.com/browse.php?path=/plugin-dicom-web下载插件源码包OrthancDicomWeb-1.7.tar.gz,将其放在前面步骤创建的 /data/orthanc 目录中,创建存放插件文件夹:
mkdir -p /data/orthanc/plugins
cd /data/orthanc
tar -zxvf OrthancDicomWeb-1.7.tar.gz -C ./plugins
解压完成后,进入解压完成的目录,直接在源码文件夹内进行编译:
cd /data/orthanc/plugins/OrthancDicomWeb-1.7/
cmake -DSTATIC_BUILD=ON -DCMAKE_BUILD_TYPE=Release
make
编译完成后,可在编译的目录中看见插件文件 libOrthancDicomWeb.so ,记住该文件路径,后面启动Orthanc需要将该插件路径配置到配置文件中:
/data/orthanc/plugins/OrthancDicomWeb-1.7/libOrthancDicomWeb.so
3. 编译MySQL插件:
在官网https://www.orthanc-server.com/browse.php?path=/plugin-mysql下载插件源码包OrthancMySQL-4.3.tar.gz,将其放在前面步骤创建的 /data/orthanc 目录中,进入目录,将其解压到插件目录中:
cd /data/orthanc
tar -zxvf OrthancMySQL-4.3.tar.gz -C ./plugins
解压完成,进入解压目录进行编译,同DICOMWeb插件一致,直接在源码目录中编译即可:
cd /data/orthanc/plugins/OrthancMySQL-4.3/MySQL/
cmake -DSTATIC_BUILD=ON -DCMAKE_BUILD_TYPE=Release
make
根据官网文件介绍,编译完成后会生成两个插件文件 libOrthancMySQLIndex.so 和 libOrthancMySQLStorage.so 两个插件文件:
libOrthancMySQLIndex.so 作用:将dicom文件的元数据存储到MySQL中,主要用于检索。
libOrthancMySQLStorage.so 作用:将dicom文件的文件数据存到MySQL中。
但是,我编译之后只看到了 libOrthancMySQLIndex.so 插件,没有libOrthancMySQLStorage.so 插件,可能是新版本官方移除了,但是手册没有更新。安装MySQL插件的目的是将元数据存放到mysql中,但是dicom文件还是使用服务器的文件系统,所以问题不大。同样记录 libOrthancMySQLIndex.so 的路径:
/data/orthanc/plugins/OrthancMySQL-4.3/MySQL/libOrthancMySQLIndex.so
4. 修改Orthanc配置文件:
进入 /data/orthanc/Orthanc-1.9.7/OrthancServer/Resources 目录,目录下有个配置文件 Configuration.json ,修改配置文件,注意下面几项内容即可:
"Name" : "MyOrthanc"
"StorageDirectory" : "/data/orthanc/storage",
"IndexDirectory" : "/data/orthanc/index",
"Plugins" : [
"/data/orthanc/plugins/OrthancDicomWeb-1.7/libOrthancDicomWeb.so",
"/data/orthanc/plugins/OrthancMySQL-4.3/MySQL/libOrthancMySQLIndex.so"
],
"DicomWeb" : {
"Enable" : true,
"Root" : "/dicom-web/",
"EnableWado" : true,
"WadoRoot" : "/wado",
"Ssl" : false,
"QidoCaseSensitive" : true,
"StudiesMetadata" : "Full",
"SeriesMetadata" : "Full",
"StowMaxInstances" : 10,
"StowMaxSize" : 10,
"QidoCaseSensitive" : true
},
"MySQL" : {
"EnableIndex" : true,
"EnableStorage" : false,
"Host" : "localhost",
"Port" : 3306,
"UnixSocket" : "",
"Database" : "orthanc",
"Username" : "root",
"Password" : "root",
"Lock" : false,
"EnableSsl" : false
},
"RemoteAccessAllowed" : true,
"RegisteredUsers" : {
"orthanc" : "orthanc"
},
在本机安装好MySQL数据库,进入数据库控制台创建数据库:
mysql -uroot -proot
# 创建数据库
CREATE DATABASE `orthanc` CHARACTER SET utf8 COLLATE utf8_general_ci;
# 开启Mysql超长索引字段
show variables like 'innodb_large_prefix';
set global innodb_large_prefix=1;
show variables like 'innodb_file_format';
SET GLOBAL innodb_file_format=BARRACUDA;
set global innodb_file_format_max=BARRACUDA;
创建目录文件夹:
mkdir -p /data/orthanc/storage
mkdir -p /data/orthanc/index
mkdir -p /data/orthanc/logs
5. 启动关闭服务:
cd /data/orthanc/Build
./Orthanc /data/orthanc/Orthanc-1.9.7/OrthancServer/Resources/Configuration.json > /data/orthanc/logs/orthanc.log 2>&1 &
s
./Orthanc stop
kill pid
访问 Orthanc Explorer http://localhost:8042/app/explorer.html 通过在配置文件中注册的用户名和密码进行认证。
6. 存储影像文件:
通过http接口存储:
# Basic 是“用户名:密码”的Base64编码
curl -X POST http://localhost:8042/instances --data-binary @IM0 -H "Authorization: Basic b3J0aGFuYzpvcnRoYW5j"
通过C-Store存储:
storescu -c MyOrthanc@localhost:4242 文件路径
对接Viewer时,需要关注下面几点配置:
"name": "MyOrthanc",
"wadoUriRoot": "http://localhost:8042/wado",
"qidoRoot": "http://localhost:8042/dicom-web",
"wadoRoot": "http://localhost:8042/dicom-web",
7. 编译 Python 插件 :
在官网https://www.orthanc-server.com/browse.php?path=/plugin-python下载插件源码包OrthancPython-3.4.tar.gz,将其放在前面步骤创建的 /data/orthanc 目录中,进入目录,将其解压到插件目录中:
cd /data/orthanc
tar -zxvf OrthancPython-3.4.tar.gz -C ./plugins
解压完成,进入解压目录进行,在解压目录下创建单独的编译目录:
cd /data/orthanc/plugins/OrthancPython-3.4
mkdir Build
sudo apt-get update
sudo apt-get install libpython3.7-dev
sudo apt-get install python3.7
cd ./Build
cmake .. -DPYTHON_VERSION=3.7 -DSTATIC_BUILD=ON -DCMAKE_BUILD_TYPE=Release
make
编译完成后,在编译目录存在编译后的文件 libOrthancPython.so , 记录该文件的位置,后面使用需要配置到Orthanc的配置文件中:
{
"Plugins" : [ "/data/orthanc/plugins/OrthancPython-3.4/Build/libOrthancPython.so" ],
"PythonScript" : "rest.py",
"PythonVerbose" : false,
}
Python插件提供了丰富的回调函数,我们可以通过注册回调函数,进行认证等操作,详情请见官方手册https://book.orthanc-server.com/plugins/python.html
8. Nginx代理配置 :
# Orthanc
location ^~ /orthanc/ {
proxy_pass http://127.0.0.1:8042;
proxy_set_header HOST $host;
proxy_set_header X-Real-IP $remote_addr;
rewrite /orthanc(.*) $1 break;
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Origin' '*';
}
|