apt-get -y install orthanc
配置
vi /etc/orthanc/orthanc.json
#179
"RemoteAccessAllowed" : true,
#228
"AuthenticationEnabled" : false,
#233
"RegisteredUsers" : {
"alice" : "alicePassword"
},
vi /etc/orthanc/credentials.json
"RegisteredUsers" : {
"alice" : "alicePassword"
}
手动配置
Orthanc --config=Configuration.json
vi Configuration.json
#179
"RemoteAccessAllowed" : true,
#228
"AuthenticationEnabled" : false,
#233
"RegisteredUsers" : {
"alice" : "alicePassword"
},
systemctl stop orthanc
Orthanc ./Configuration.json &
Orthanc ./Configuration.json --verbose
Orthanc ./Configuration.json –trace
Orthanc访问
http://localhost:8042/app/explorer.html
日志可在 中找到
/var/log/orthanc/
配置文件。
/etc/orthanc/