Orthanc 1.1.0 in Debian jessie

Orthanc is a big project very good, i downloaded Orthanc-1.1.0 in: http://www.orthanc-server.com/download.php, in this folder there is the way to install orthanc, i already the instructions and everything went Well, but in the moment that upload Dicom image, i can't upload dicom image and display failure and i have a question:

1.- The other services so Database have install apart??
2.- what other services must install for running the orthanc, upload dicom image and work correctly ORthanc?

thanks, regards.

Under Debian Jessie, the most recent version of the Orthanc package is 0.8.4:
https://packages.debian.org/en/jessie/orthanc

To use the latest release of Orthanc on Debian Jessie, you’ll have either to compile Orthanc from source, or use Docker. This is explained in the Orthanc Book:
http://book.orthanc-server.com/users/cookbook.html#obtaining-binaries

In either case, this will not install the Orthanc service as in the official Debian package. You’ll have to start Orthanc manually after each boot, or to create the service by yourself.

Orthanc does not rely on any other service.

Sébastien-

PS: Check out the source code of the official Debian package to have a starting point to create the service:

https://anonscm.debian.org/cgit/debian-med/orthanc.git/tree/debian/orthanc.init

Thanks for you answer Sébastien, you can also recommend an operative system linux for install Orthanc 1.1.0 please, regards.

You could use Ubuntu 16.10, that is also Debian-based:
http://packages.ubuntu.com/yakkety/orthanc

Docker is another possibility that will work on any recent GNU/Linux distribution:
http://book.orthanc-server.com/users/docker.html

Thanks for you answer Sébastien Jodogne, I can compile Orthanc 1.1.0 in Ubuntu 16.04, exist of some way for chage interface for exmaple colour, language and also i can´t upload this file https://1drv.ms/u/s!ArkkNJAikHkShGmhel_yk-CgZZ38, regards.

Hello,

Your DICOM file is invalid, as reported by the “dciodvfy” command-line tool from David Clunie’s dicom3tools:

$ dciodvfy ./cine1.DCM
Error - Media Storage SOP Instance UID but missing SOP Instance UID and not a directory
Error - Media Storage SOP Class UID but missing SOP Class UID and not a directory
Warning - Missing attribute or value that would be needed to build DICOMDIR - Patient ID
Warning - Missing attribute or value that would be needed to build DICOMDIR - Study ID
Warning - Missing attribute or value that would be needed to build DICOMDIR - Series Number
Warning - Missing attribute or value that would be needed to build DICOMDIR - Instance Number
Error - Value invalid for this VR - (0x0008,0x0060) CS Modality CS [0] = - Character invalid for this VR = ‘e’ (0x65)
Error - Value invalid for this VR - (0x0008,0x0060) CS Modality CS [0] = - Character invalid for this VR = ‘m’ (0x6d)
Error - Value invalid for this VR - (0x0008,0x0060) CS Modality CS [0] = - Character invalid for this VR = ‘o’ (0x6f)
Error - Value invalid for this VR - (0x0008,0x0060) CS Modality CS [0] = - Character invalid for this VR = ‘d’ (0x64)
Error - Value invalid for this VR - (0x0008,0x0060) CS Modality CS [0] = - Character invalid for this VR = ‘i’ (0x69)
Error - Value invalid for this VR - (0x0008,0x0060) CS Modality CS [0] = - Character invalid for this VR = ‘n’ (0x6e)
Error - Value invalid for this VR - (0x0008,0x0060) CS Modality CS [0] = - Character invalid for this VR = ‘a’ (0x61)
Error - Value invalid for this VR - (0x0008,0x0060) CS Modality CS [0] = - Character invalid for this VR = ‘m’ (0x6d)
Error - Value invalid for this VR - (0x0008,0x0060) CS Modality CS [0] = - Character invalid for this VR = ‘i’ (0x69)
Error - Value invalid for this VR - (0x0008,0x0060) CS Modality CS [0] = - Character invalid for this VR = ‘a’ (0x61)
Warning - Value dubious for this VR - (0x0008,0x1050) PN Performing Physician’s Name PN [0] = <Dr.> - Retired Person Name form
Warning - Value dubious for this VR - (0x0010,0x0010) PN Patient’s Name PN [0] = <128 ANTONIO RUVALCABA> - Retired Person Name form
Error - Dicom dataset contains invalid data values for Value Representations
BasicDirectory
Error - Missing attribute Type 2 Required Element= Module=
Error - Missing attribute Type 1 Required Element= Module=
Error - Missing attribute Type 1 Required Element= Module=
Error - Missing attribute Type 1 Required Element= Module=
Error - Missing attribute Type 2 Required Element= Module=

The Orthanc log also contains information about why your file is rejected:

E1208 09:44:21.523278 ServerToolbox.cpp:215] Store has failed because required tags (PatientID, SOPInstanceUID) are missing for the following instance: StudyInstanceUID=1.2.826.0.1.3680043.8.1.2.826.0.1.3680043.20070913110911.500.84, SeriesInstanceUID=1.2.826.0.1.3680043.8.1.2.826.0.1.3680043.20070913110911.500.90

Please try again with a compliant DICOM file.

Regards,
Sébastien-